Now with Drools demo (Rete System to match which level building rules to fire for which PlayerProfiles/Archetypes).

This commit is contained in:
Woody Folsom
2012-03-17 16:46:01 -04:00
parent 28cc5715e9
commit 27d357f1fc
13 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package org.drools.examples.simple;
public class Account {
private int balance;
private String Id;
public int getBalance() {
return balance;
}
public void setBalance(int balance) {
this.balance = balance;
}
public String getId() {
return Id;
}
public void setId(String id) {
Id = id;
}
}