starting the rewrite of forespend.
This commit is contained in:
parent
2b62c95db4
commit
d36dc68f8a
19 changed files with 833 additions and 290 deletions
|
|
@ -3,6 +3,8 @@
|
|||
#include <immintrin.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "scenes/scene.h"
|
||||
|
||||
namespace enginend{
|
||||
extern const long long CPUCLOCK;
|
||||
inline const char* COMMONCONFIG();
|
||||
|
|
@ -10,8 +12,10 @@ class program {
|
|||
unsigned long long currenttick = __rdtsc();
|
||||
unsigned long long currentframe = __rdtsc();
|
||||
public:
|
||||
scene *currentscene;
|
||||
int tickrate;
|
||||
int framerate;
|
||||
void changescene(scene*scn);
|
||||
program():client(false){}
|
||||
program(bool isclient):client(isclient){}
|
||||
virtual const char* CONF()=0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue