git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1340 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
(no author)
2007-07-24 09:16:41 +00:00
parent 5bf38488d2
commit 3d3316a188
14 changed files with 63 additions and 53 deletions

18
OpenRa.Game/Player.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenRa.Game
{
class Player
{
public int Palette;
public string PlayerName;
public Player( int palette, string playerName )
{
this.Palette = palette;
this.PlayerName = playerName;
}
}
}