mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Move editor functions to separate file
This moves editorrenderfixed(), editorrender(), editorinput(), editorlogic(), and their associated functions to a new file named Editor.cpp - which is exactly what it says on the tin; it stores all the functions related to the actual in-game editor loop. Also, the existing editor.cpp has been renamed to CustomLevels.cpp.
This commit is contained in:
parent
3ef5248db9
commit
3fe0f01bcc
3 changed files with 2638 additions and 2628 deletions
|
@ -117,7 +117,10 @@ set(VVV_SRC
|
|||
../third_party/physfs/extras/physfsrwops.c
|
||||
)
|
||||
if(NOT CUSTOM_LEVEL_SUPPORT STREQUAL "DISABLED")
|
||||
list(APPEND VVV_SRC src/editor.cpp)
|
||||
list(APPEND VVV_SRC src/CustomLevels.cpp)
|
||||
if(NOT CUSTOM_LEVEL_SUPPORT STREQUAL "NO_EDITOR")
|
||||
LIST(APPEND VVV_SRC src/Editor.cpp)
|
||||
endif()
|
||||
endif()
|
||||
if(STEAM)
|
||||
list(APPEND VVV_SRC src/SteamNetwork.c)
|
||||
|
|
2630
desktop_version/src/CustomLevels.cpp
Normal file
2630
desktop_version/src/CustomLevels.cpp
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue