Now with Drools demo (Rete System to match which level building rules to fire for which PlayerProfiles/Archetypes).
This commit is contained in:
19
src/org/drools/examples/simple/Account.java
Normal file
19
src/org/drools/examples/simple/Account.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user