blob: 740ffb83f898a79bc09d98b268e97ae7828fe99f (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef ISPLAYING_H
#define ISPLAYING_H
/// Is the world playmode? (Otherwise we are in editor mode)
bool EXPORT_COREMODULE IsWorldPlaying ();
void SetIsWorldPlaying (bool isPlaying);
#endif
|