19 lines
301 B
C#
19 lines
301 B
C#
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;
|
|
}
|
|
}
|
|
}
|