9 lines
140 B
C#
9 lines
140 B
C#
namespace Game;
|
|
|
|
public class GameState
|
|
{
|
|
public Company Company { get; set; } = new();
|
|
|
|
public Ceo Ceo { get; set; } = new();
|
|
}
|