12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef TEST_GDSCRIPT_H
- #define TEST_GDSCRIPT_H
- #include "core/os/main_loop.h"
- namespace TestGDScript {
- enum TestType {
- TEST_TOKENIZER,
- TEST_PARSER,
- TEST_COMPILER,
- TEST_BYTECODE,
- };
- MainLoop *test(TestType p_type);
- }
- #endif
|