initialize repo

This commit is contained in:
2025-08-08 15:36:09 +02:00
parent d6a2c37a5f
commit cabf13d164
92 changed files with 2160 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
namespace Civilization.Core.Game;
public class Player(int id, string name, ColorRGBA color, bool isHuman = true)
{
public int Id { get; } = id;
public string Name { get; } = name;
public ColorRGBA Color { get; } = color;
public bool IsHuman { get; } = isHuman;
}