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 AbilityT { |
| 11 | private long id; |
| 12 | private long distance; |
| 13 | |
| 14 | public long getId() { return id; } |
| 15 | |
| 16 | public void setId(long id) { this.id = id; } |
| 17 | |
| 18 | public long getDistance() { return distance; } |
| 19 | |
| 20 | public void setDistance(long distance) { this.distance = distance; } |
| 21 | |
| 22 | |
| 23 | public AbilityT() { |
| 24 | this.id = 0L; |
| 25 | this.distance = 0L; |
| 26 | } |
| 27 | } |
| 28 | |