New constructor created.

This commit is contained in:
2023-08-21 16:12:06 -04:00
parent bdf14b8f24
commit 876ccc7cbf
2 changed files with 11 additions and 1 deletions
@@ -33,6 +33,10 @@ public abstract class AbstractIntelligenceAgent extends AbstractCharacter {
public Enum.AIAgentType agentType = Enum.AIAgentType.MOBILE;
public AbstractIntelligenceAgent() {
super();
}
public AbstractIntelligenceAgent(ResultSet rs) throws SQLException {
super(rs);
}