21 lines
460 B
Java
21 lines
460 B
Java
|
// automatically generated by the FlatBuffers compiler, do not modify
|
||
|
|
||
|
import java.nio.*;
|
||
|
import java.lang.*;
|
||
|
import java.util.*;
|
||
|
import com.google.flatbuffers.*;
|
||
|
|
||
|
public class AttackerT {
|
||
|
private int swordAttackDamage;
|
||
|
|
||
|
public int getSwordAttackDamage() { return swordAttackDamage; }
|
||
|
|
||
|
public void setSwordAttackDamage(int swordAttackDamage) { this.swordAttackDamage = swordAttackDamage; }
|
||
|
|
||
|
|
||
|
public AttackerT() {
|
||
|
this.swordAttackDamage = 0;
|
||
|
}
|
||
|
}
|
||
|
|