J :
* Add missing files.
This commit is contained in:
15
projects/mtg/include/Pos.h
Normal file
15
projects/mtg/include/Pos.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#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_
|
||||
Reference in New Issue
Block a user