no message

This commit is contained in:
PC-20230316NUNE\Administrator
2024-02-20 18:39:12 +08:00
parent 97b3671979
commit 2b467e56ad
1876 changed files with 440340 additions and 35266 deletions

View File

@@ -0,0 +1,26 @@
namespace HPJ.Simulation
{
public struct TileOwnershipClaim
{
public ushort OwnerID;
public IntVector2 RequestTile;
public TileOwnershipClaim(ushort ID, IntVector2 Tile)
{
OwnerID = ID;
RequestTile = Tile;
}
}
public struct DisownTileOwnership
{
public ushort OwnerID;
public IntVector2 RequestTile;
public DisownTileOwnership(ushort ID, IntVector2 Tile)
{
OwnerID = ID;
RequestTile = Tile;
}
}
}