5 lines
240 B
C#
5 lines
240 B
C#
|
|
public static class player_config // simple class for customising player type and color
|
|||
|
|
{
|
|||
|
|
public static player.ShipType SelectedType = ship.ShipType.FIGHTER;
|
|||
|
|
public static player.ShipColor SelectedColor = player.ShipColor.BLUE;
|
|||
|
|
}
|