Beispiel #1
0
 /// How many of your turns until this frame becomes a robot
 public int getCompletionTime() {
   validify();
   return Client.INSTANCE.frameGetCompletionTime(ptr);
 }
Beispiel #2
0
 /// The length of one side of this robot, such that size^2 = number of bots combined into this bot
 public int getSize() {
   validify();
   return Client.INSTANCE.frameGetSize(ptr);
 }
Beispiel #3
0
 /// What type this robot will be
 public Pointer getType() {
   validify();
   return Client.INSTANCE.frameGetType(ptr);
 }
Beispiel #4
0
 /// The maximum amount of health this unit can ever have
 public int getMaxHealth() {
   validify();
   return Client.INSTANCE.frameGetMaxHealth(ptr);
 }
Beispiel #5
0
 /// The owning player
 public int getOwner() {
   validify();
   return Client.INSTANCE.frameGetOwner(ptr);
 }
Beispiel #6
0
 /// Sends a message to be visualized when this unit is selected
 int talk(String message) {
   validify();
   return Client.INSTANCE.frameTalk(ptr, message);
 }