Files
tp/include/f_op/f_op_scene_pause.h
T

10 lines
182 B
C++
Raw Normal View History

2021-04-09 01:22:16 +02:00
#ifndef F_F_OP_SCENE_PAUSE_H_
#define F_F_OP_SCENE_PAUSE_H_
2021-03-28 22:49:05 +02:00
2023-05-12 12:10:14 -07:00
class scene_class;
2021-03-28 22:49:05 +02:00
2024-11-29 08:24:26 -08:00
int fopScnPause_Enable(scene_class* i_scene);
int fopScnPause_Disable(scene_class* i_scene);
2021-04-09 01:22:16 +02:00
2024-11-29 08:24:26 -08:00
#endif