Skip to content
Snippets Groups Projects
Select Git revision
  • 8347f97f2f2b687465a398667c22fe84e89cb74c
  • main default protected
2 results

temp.c

Blame
  • CharacterInterface.java 640 B
    package Character;
    
    public class CharacterInterface {
        private static final String name = "Jarren White";
        private static final Attributes attributes = new Attributes(new int[]{7,1,7, 20,1,11, 1,1,5});
        private static final Abilities abilities = new Abilities();
        private static final Motes motes = new Motes(10, 5, 40, 3, 8);
        private static final Health health = new Health(new int[]{0,0,0,-1,-1,-2}, new int[]{-2, -2, -2, -4}, 5);
    
        public CharacterInterface() {
    
        }
    
        public static String getName() {
            return name;
        }
    
        public static Attributes getAttributes() {
            return attributes;
        }
    
    }