mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-27 20:04:35 +00:00
27 lines
552 B
C#
27 lines
552 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|