ObjectModificationType.java :  » Game » joverseer » org » joverseer » tools » turnReport » Java Open Source

Java Open Source » Game » joverseer 
joverseer » org » joverseer » tools » turnReport » ObjectModificationType.java
package org.joverseer.tools.turnReport;

public enum ObjectModificationType {
  Gained (1),
  Modified (2),
  Lost (3);
  
  int value;

  ObjectModificationType(int value) {
       this.value = value;
    }

    public int getValue() {
        return value;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.