Last change
on this file since 5db343b 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
|
Line | |
---|
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.