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:
268 bytes
|
Rev | Line | |
---|
[ebd3538] | 1 | package main;
|
---|
| 2 |
|
---|
| 3 | public enum Action
|
---|
| 4 | {
|
---|
| 5 | Walking("Walking", 0),
|
---|
| 6 | Running("Running", 1),
|
---|
| 7 | Standing("Standing", 2),
|
---|
| 8 | Attacking("Attacking", 3),
|
---|
| 9 | BeenHit("BeenHit", 4),
|
---|
| 10 | Dying("Dying", 5);
|
---|
| 11 |
|
---|
| 12 | private Action(final String s, final int n) {
|
---|
| 13 | }
|
---|
| 14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.