27 lines
462 B
C
27 lines
462 B
C
#ifndef YUGINE_H
|
|
#define YUGINE_H
|
|
|
|
int sim_playing();
|
|
int sim_paused();
|
|
void sim_start();
|
|
void sim_pause();
|
|
void sim_stop();
|
|
void sim_step();
|
|
int phys_stepping();
|
|
void set_timescale(float val);
|
|
void print_stacktrace();
|
|
void yugine_init();
|
|
|
|
const char *engine_info();
|
|
void app_name(const char *name);
|
|
|
|
int frame_fps();
|
|
double get_timescale();
|
|
|
|
double apptime();
|
|
extern double renderMS;
|
|
extern double physMS;
|
|
extern double updateMS;
|
|
extern int editor_mode;
|
|
#endif
|