Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+43 -43
View File
@@ -7,7 +7,7 @@
// www.magicbane.com
package engine.objects;
package engine.objects;
import java.sql.ResultSet;
import java.sql.SQLException;
@@ -15,56 +15,56 @@ import java.sql.SQLException;
public class SkillsBaseAttribute extends AbstractGameObject {
private short attributeID;
private short modValue;
private short attributeID;
private short modValue;
/**
* No Table ID Constructor
*/
public SkillsBaseAttribute(short attributeID, short modValue) {
super();
/**
* No Table ID Constructor
*/
public SkillsBaseAttribute(short attributeID, short modValue) {
super();
this.attributeID = attributeID;
this.modValue = modValue;
}
this.attributeID = attributeID;
this.modValue = modValue;
}
/**
* Normal Constructor
*/
public SkillsBaseAttribute(short attributeID, short modValue, int newUUID) {
super(newUUID);
/**
* Normal Constructor
*/
public SkillsBaseAttribute(short attributeID, short modValue, int newUUID) {
super(newUUID);
this.attributeID = attributeID;
this.modValue = modValue;
}
this.attributeID = attributeID;
this.modValue = modValue;
}
/**
* ResultSet Constructor
*/
public SkillsBaseAttribute(ResultSet rs) throws SQLException {
super(rs);
/**
* ResultSet Constructor
*/
public SkillsBaseAttribute(ResultSet rs) throws SQLException {
super(rs);
this.attributeID = rs.getShort("attributeID");
this.modValue = rs.getShort("modValue");
}
this.attributeID = rs.getShort("attributeID");
this.modValue = rs.getShort("modValue");
}
/*
* Getters
*/
public short getAttributeID() {
return attributeID;
}
/*
* Getters
*/
public short getAttributeID() {
return attributeID;
}
public short getModValue() {
return modValue;
}
public short getModValue() {
return modValue;
}
/*
* Database
*/
@Override
public void updateDatabase() {
// TODO Auto-generated method stub
}
/*
* Database
*/
@Override
public void updateDatabase() {
// TODO Auto-generated method stub
}
}