Files
wagic/projects/mtg/include/Pos.h
Xawotihs@gmail.com eec9bb44a8 Fixed warnings from linux and Android compilers
Cleaned up network code on Linux, it still does not work correctly
2013-01-26 22:17:43 +00:00

21 lines
379 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;
float width, height;
PIXEL_TYPE mask;
Pos(float, float, float, float, float);
virtual ~Pos(){};
virtual void Update(float dt);
void UpdateNow();
virtual void Render();
void Render(JQuad*);
};
#endif // _POS_H_