xref: /aosp_15_r20/external/flatbuffers/tests/union_vector/AttackerT.java (revision 890232f25432b36107d06881e0a25aaa6b473652)
1*890232f2SAndroid Build Coastguard Worker // automatically generated by the FlatBuffers compiler, do not modify
2*890232f2SAndroid Build Coastguard Worker 
3*890232f2SAndroid Build Coastguard Worker import java.nio.*;
4*890232f2SAndroid Build Coastguard Worker import java.lang.*;
5*890232f2SAndroid Build Coastguard Worker import java.util.*;
6*890232f2SAndroid Build Coastguard Worker import com.google.flatbuffers.*;
7*890232f2SAndroid Build Coastguard Worker 
8*890232f2SAndroid Build Coastguard Worker public class AttackerT {
9*890232f2SAndroid Build Coastguard Worker   private int swordAttackDamage;
10*890232f2SAndroid Build Coastguard Worker 
getSwordAttackDamage()11*890232f2SAndroid Build Coastguard Worker   public int getSwordAttackDamage() { return swordAttackDamage; }
12*890232f2SAndroid Build Coastguard Worker 
setSwordAttackDamage(int swordAttackDamage)13*890232f2SAndroid Build Coastguard Worker   public void setSwordAttackDamage(int swordAttackDamage) { this.swordAttackDamage = swordAttackDamage; }
14*890232f2SAndroid Build Coastguard Worker 
15*890232f2SAndroid Build Coastguard Worker 
AttackerT()16*890232f2SAndroid Build Coastguard Worker   public AttackerT() {
17*890232f2SAndroid Build Coastguard Worker     this.swordAttackDamage = 0;
18*890232f2SAndroid Build Coastguard Worker   }
19*890232f2SAndroid Build Coastguard Worker }
20*890232f2SAndroid Build Coastguard Worker 
21