fallout2-ce/src/cycle.h

18 lines
309 B
C
Raw Normal View History

2022-05-19 08:51:26 +00:00
#ifndef CYCLE_H
#define CYCLE_H
2022-09-23 12:43:44 +00:00
namespace fallout {
2022-05-19 08:51:26 +00:00
void colorCycleInit();
void colorCycleReset();
void colorCycleFree();
void colorCycleDisable();
void colorCycleEnable();
bool colorCycleEnabled();
void cycleSetSpeedFactor(int value);
void colorCycleTicker();
2022-09-23 12:43:44 +00:00
} // namespace fallout
2022-05-19 08:51:26 +00:00
#endif /* CYCLE_H */