source: lost-perception/gamegui/Align.java@ e5d2936

Last change on this file since e5d2936 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: 167 bytes
Line 
1package gamegui;
2
3public enum Align {
4 Center("Center", 0),
5 Right("Right", 1),
6 Left("Left", 2);
7
8 private Align(final String s, final int n) {
9 }
10}
Note: See TracBrowser for help on using the repository browser.