Files
2006Scape/2006Scape Server/src/main/java/com/rs2/game/objects/Object.java
T
2021-03-11 00:30:16 +00:00

35 lines
654 B
Java

package com.rs2.game.objects;
import com.rs2.GameEngine;
public class Object {
public int objectId;
public int objectX;
public int objectY;
public int height;
public int face, faceOriginal;
public int type;
public int newId;
public int tick;
public Object(int ID, int X, int Y, int Height, int Face, int Type, int NewId, int Tick) {
Object p = GameEngine.objectManager.getObject(X, Y, Height);
if (p != null) {
if (ID == p.objectId) {
return;
}
}
objectId = ID;
objectX = X;
objectY = Y;
height = Height;
face = Face;
type = Type;
newId = NewId;
tick = Tick;
GameEngine.objectManager.addObject(this);
}
}