merloj: missing function fix (SetTileCoord())

This commit is contained in:
Maciekxdabu 2022-05-23 14:00:59 +02:00
parent ae04f9f4af
commit 68a93d8891

View File

@ -66,6 +66,11 @@ public class Soldier : Base
setEnemyTag();
}
public void SetTileCoords(Vector2Int tileCoordinates)
{
tileCoord = tileCoordinates;
}
public void setEnemyTag()
{
if(ourType == SoldierType.Ally) enemyType = SoldierType.Enemy;