public SituationCUR(SituationCUR cur) { _id = cur._id; _posX = cur._posX; _posZ = cur._posZ; _dist = cur._dist; _angleComp = cur._angleComp; _doing = new IntVector3(cur._doing); _time = cur._time; }
public void Set(SituationCUR cur) { _id = cur._id; _posX = cur._posX; _posZ = cur._posZ; _dist = cur._dist; _angleComp = cur._angleComp; _doing = cur._doing; _time = cur._time; }
public AIData() { sitCUR = new SituationCUR("NULL", -1f, -1f, -1f, -1f, new IntVector3(-1, -1, -1), -1f); sitAFT = new SituationAFT("NULL", -1f, -1f, -1f, -1f, "NULL", -1, -1, false); }
public AIData(AIData data) { sitCUR = new SituationCUR(data.sitCUR); sitAFT = new SituationAFT(data.sitAFT); }
public AIData(SituationCUR cur, SituationAFT aft) { sitCUR = cur; sitAFT = aft; }