GeometryDash/EScript.hpp

17 lines
182 B
C++
Raw Normal View History

2016-04-30 13:31:37 +02:00
#ifndef ESCRIPT
#define ESCRIPT
class EngineControl: public Script
{
public:
void Update();
void UpdateScenary();
void SetDecor(int i);
2016-05-13 23:07:30 +02:00
bool mini;
2016-04-30 13:31:37 +02:00
};
#endif