width in world objects, bed stubbed
parent
4cd4e29bca
commit
cf77644f4b
|
|
@ -0,0 +1,26 @@
|
|||
package xyz.valnet.hadean.gameobjects.worldobjects;
|
||||
|
||||
import xyz.valnet.engine.math.Vector4f;
|
||||
import xyz.valnet.hadean.interfaces.IBuildable;
|
||||
|
||||
public class Bed extends WorldObject implements IBuildable {
|
||||
|
||||
@Override
|
||||
public void buildAt(int x, int y, int w, int h) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Vector4f getWorldBox() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -11,6 +11,8 @@ public abstract class WorldObject extends GameObject {
|
|||
|
||||
protected float x;
|
||||
protected float y;
|
||||
protected float w;
|
||||
protected float h;
|
||||
|
||||
protected Camera camera;
|
||||
protected Terrain terrain;
|
||||
|
|
|
|||
Loading…
Reference in New Issue