source: lost-perception/main/StatType.java

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: 328 bytes
Line 
1package main;
2
3public enum StatType
4{
5 Strength("Strength", 0),
6 Dexterity("Dexterity", 1),
7 Constitution("Constitution", 2),
8 Intelligence("Intelligence", 3),
9 Fire("Fire", 4),
10 Ice("Ice", 5),
11 Wind("Wind", 6),
12 Armor("Armor", 7);
13
14 private StatType(final String s, final int n) {
15 }
16}
Note: See TracBrowser for help on using the repository browser.