source: lost-perception/main/MapType.java

Last change on this file was ebd3538, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 6 years ago

Initial commit. This codebase for the Lost Perception game was created by decompiling code from a jar file.

  • Property mode set to 100644
File size: 184 bytes
Line 
1package main;
2
3public 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.