2022-12-22 03:50:40 -06:00
|
|
|
#ifndef YUGINE_H
|
|
|
|
#define YUGINE_H
|
|
|
|
|
|
|
|
int sim_playing();
|
|
|
|
int sim_paused();
|
|
|
|
void sim_start();
|
|
|
|
void sim_pause();
|
|
|
|
void sim_stop();
|
|
|
|
void sim_step();
|
2022-12-22 16:58:06 -06:00
|
|
|
void set_timescale(float val);
|
2022-12-22 03:50:40 -06:00
|
|
|
|
2022-12-29 04:26:21 -06:00
|
|
|
int frame_fps();
|
|
|
|
|
2022-12-22 03:50:40 -06:00
|
|
|
|
|
|
|
#endif
|