13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
|
import { World } from "../World";
|
||
|
import { ItemStack } from "../containers/ItemStack";
|
||
|
import { Entity } from "./Entity";
|
||
|
|
||
|
export class EntityItem extends Entity {
|
||
|
public age:number;
|
||
|
|
||
|
public constructor(world:World, x:number, y:number, z:number, itemStack:ItemStack) {
|
||
|
super(world);
|
||
|
this.age = 0;
|
||
|
this.health = 5;
|
||
|
}
|
||
|
}
|