blob: 67ad13eb3d55dec5ea0f08bd0314a5f95d3f9d95 [file] [log] [blame]
James Kuszmaul8e62b022022-03-22 09:33:25 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package MyGame.Example;
4
5import java.nio.*;
6import java.lang.*;
7import java.util.*;
8import com.google.flatbuffers.*;
9
10public 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