source: lost-perception/main/Action.java@ a10d422

Last change on this file since a10d422 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
RevLine 
[ebd3538]1package main;
2
3public 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.