mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
10 lines
348 B
C++
10 lines
348 B
C++
class RuntimeScene;
|
|
class RuntimeObject;
|
|
|
|
//Simple function changing scene background color.
|
|
//The function is implemented in Test.cpp and called by Scene 2 using a C++ code event.
|
|
void MyFunction(RuntimeScene & scene);
|
|
|
|
//Another function implemented in Test.cpp and called by Scene 2.
|
|
void MyFunction2(std::vector<RuntimeObject*> & objectsList);
|