Last change
on this file since c3b2f42 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
|
Rev | Line | |
---|
[ebd3538] | 1 | package gamegui;
|
---|
| 2 |
|
---|
| 3 | public 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.