source:
lost-perception/main/MapType.java
Last change on this file was ebd3538, checked in by , 6 years ago | |
---|---|
|
|
File size: 184 bytes |
Line | |
---|---|
1 | package main; |
2 | |
3 | public enum MapType |
4 | { |
5 | Ground("Ground", 0), |
6 | Object("Object", 1), |
7 | Structure("Structure", 2); |
8 | |
9 | private MapType(final String s, final int n) { |
10 | } |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.