James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame] | 1 | // automatically generated by the FlatBuffers compiler, do not modify |
| 2 | |
| 3 | package MyGame.Example; |
| 4 | |
| 5 | import java.nio.*; |
| 6 | import java.lang.*; |
| 7 | import java.util.*; |
| 8 | import com.google.flatbuffers.*; |
| 9 | |
| 10 | public class StatT { |
| 11 | private String id; |
| 12 | private long val; |
| 13 | private int count; |
| 14 | |
| 15 | public String getId() { return id; } |
| 16 | |
| 17 | public void setId(String id) { this.id = id; } |
| 18 | |
| 19 | public long getVal() { return val; } |
| 20 | |
| 21 | public void setVal(long val) { this.val = val; } |
| 22 | |
| 23 | public int getCount() { return count; } |
| 24 | |
| 25 | public void setCount(int count) { this.count = count; } |
| 26 | |
| 27 | |
| 28 | public StatT() { |
| 29 | this.id = null; |
| 30 | this.val = 0L; |
| 31 | this.count = 0; |
| 32 | } |
| 33 | } |
| 34 | |