Bring Windows launcher into line with pchote's ideas.

This commit is contained in:
Matthew Bowra-Dean
2010-11-18 23:41:13 +13:00
committed by Paul Chote
parent 085685a769
commit d2a52fd529
13 changed files with 409 additions and 1058 deletions

27
OpenRA.Launcher/Mod.cs Normal file
View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRA.Launcher
{
public class Mod
{
public string Title { get; private set; }
public string Version { get; private set; }
public string Author { get; private set; }
public string Description { get; private set; }
public string Requires { get; private set; }
public bool Standalone { get; private set; }
public Mod(string title, string version, string author, string description, string requires, bool standalone)
{
Title = title;
Version = version;
Author = author;
Description = description;
Requires = requires;
Standalone = standalone;
}
}
}