Files
wagic/projects/mtg/include/Pos.h
jean.chalard 6dab048a9e J :
* Interface for damage assignment.
2009-08-31 02:00:33 +00:00

17 lines
297 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);
void UpdateNow();
virtual void Render();
void Render(JQuad*);
};
#endif // _POS_H_