Lots of Gui And Slot related Changes.

This commit is contained in:
AlgorithmX2
2013-12-29 23:52:00 -06:00
parent 14207bb8e7
commit c4b43eb0cf
7 changed files with 58 additions and 25 deletions
+13
View File
@@ -12,6 +12,14 @@ public class AppEngSlot extends Slot
NotAvailable, Valid, Invalid
};
public boolean isPlayerSide = false;
public Slot setPlayerSide()
{
isPlayerSide = true;
return this;
}
public int icon = -1;
public hasCalculatedValidness isValid;
public int defX, defY;
@@ -68,4 +76,9 @@ public class AppEngSlot extends Slot
return icon;
}
public boolean isPlayerSide()
{
return isPlayerSide;
}
}