Files
wagic/projects/mtg/include/Pos.h
jean.chalard b2f75d45e7 J :
* Add missing files.
2009-08-22 06:01:52 +00:00

16 lines
277 B
C

#ifndef _POS_H_
#define _POS_H_
#include "JGE.h"
struct Pos {
float actX, actY, actZ, actT, actA;
float x, y, zoom, t, alpha;
Pos(float, float, float, float, float);
virtual void Update(float dt);
virtual void Render();
void Render(JQuad*);
};
#endif // _POS_H_