#ifndef ENEMY_H #define ENEMY_H #import #import #import //just a simple enemy that follows the player for now @interface Enemy : NSObject { Texture2D texture; Vector3 pos; BoundingBox bbox; } -(id) init; //-(void) Attack; //-(void) Moan; -(void) Render: (Camera3D) camera; @end #endif