Move editor functions to separate header

Editor functions now live in Editor.h, which is a new file - the
existing editor.h has been renamed to CustomLevels.h.
This commit is contained in:
Misa
2021-02-19 23:21:58 -08:00
committed by Misa Elizabeth Kai
parent 3e380e23fb
commit 6f0177ec04
3 changed files with 20 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
#if !defined(NO_CUSTOM_LEVELS) && !defined(NO_EDITOR)
#ifndef EDITOR_H
#define EDITOR_H
void editorrender(void);
void editorrenderfixed(void);
void editorlogic(void);
void editorinput(void);
#endif /* EDITOR_H */
#endif /* NO_CUSTOM_LEVELS and NO_EDITOR */