コード例 #1
0
ファイル: JailProperty.java プロジェクト: Mykro/malibu
 public JailProperty(
     String outsideName, String jailName, PropertyGroup group, int jailFee, int doubleAttempts) {
   super(outsideName);
   this.jailName = jailName;
   this.group = group;
   this.jailFee = jailFee;
   this.doubleAttempts = doubleAttempts;
   group.addProperty(this);
 }