source:
lost-perception/gamegui/Align.java
Last change on this file was ebd3538, checked in by , 6 years ago | |
---|---|
|
|
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.