- Implemented Compound engine.

- Created Launcher files to use debugger in eclipse.
This commit is contained in:
erlandys56
2015-01-25 21:51:18 +00:00
parent fbd425faf0
commit 56db1f21cf
22 changed files with 837 additions and 6 deletions

View File

@@ -15064,4 +15064,27 @@ public final class L2PcInstance extends L2Playable
}
_vitPoints = points;
}
int _firstCompoundOID = -1;
int _secondCompoundOID = -1;
public int getFirstCompoundOID()
{
return _firstCompoundOID;
}
public void setFirstCompoundOID(int firstCompoundOID)
{
_firstCompoundOID = firstCompoundOID;
}
public int getSecondCompoundOID()
{
return _secondCompoundOID;
}
public void setSecondCompoundOID(int secondCompoundOID)
{
_secondCompoundOID = secondCompoundOID;
}
}