-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAction.java
More file actions
38 lines (33 loc) · 1.73 KB
/
Action.java
File metadata and controls
38 lines (33 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// automatically generated by the FlatBuffers compiler, do not modify
package battlecode.schema;
@SuppressWarnings("unused")
public final class Action {
private Action() { }
public static final byte NONE = 0;
public static final byte CatFeed = 1;
public static final byte RatAttack = 2;
public static final byte RatNap = 3;
public static final byte RatCollision = 4;
public static final byte PlaceDirt = 5;
public static final byte BreakDirt = 6;
public static final byte CheesePickup = 7;
public static final byte CheeseSpawn = 8;
public static final byte CheeseTransfer = 9;
public static final byte CatScratch = 10;
public static final byte CatPounce = 11;
public static final byte PlaceTrap = 12;
public static final byte RemoveTrap = 13;
public static final byte TriggerTrap = 14;
public static final byte ThrowRat = 15;
public static final byte UpgradeToRatKing = 16;
public static final byte RatSqueak = 17;
public static final byte DamageAction = 18;
public static final byte StunAction = 19;
public static final byte SpawnAction = 20;
public static final byte DieAction = 21;
public static final byte IndicatorStringAction = 22;
public static final byte IndicatorDotAction = 23;
public static final byte IndicatorLineAction = 24;
public static final String[] names = { "NONE", "CatFeed", "RatAttack", "RatNap", "RatCollision", "PlaceDirt", "BreakDirt", "CheesePickup", "CheeseSpawn", "CheeseTransfer", "CatScratch", "CatPounce", "PlaceTrap", "RemoveTrap", "TriggerTrap", "ThrowRat", "UpgradeToRatKing", "RatSqueak", "DamageAction", "StunAction", "SpawnAction", "DieAction", "IndicatorStringAction", "IndicatorDotAction", "IndicatorLineAction", };
public static String name(int e) { return names[e]; }
}