mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
Move Script.cpp <limits.h> #include to proper place
It should be between the include of the corresponding header file for the source file (Script.h) and the includes of other local header files (the files that are specific to this codebase only); this is the convention that includes in all other source files follow. However, it seems like I misplaced this, so I'm fixing it now.
This commit is contained in:
parent
4964cb7bc3
commit
d39fe96cf2
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
||||||
#define SCRIPT_DEFINITION
|
#define SCRIPT_DEFINITION
|
||||||
#include "Script.h"
|
#include "Script.h"
|
||||||
|
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
#include "editor.h"
|
#include "editor.h"
|
||||||
#include "Entity.h"
|
#include "Entity.h"
|
||||||
#include "Enums.h"
|
#include "Enums.h"
|
||||||
|
@ -10,8 +12,6 @@
|
||||||
#include "Music.h"
|
#include "Music.h"
|
||||||
#include "UtilityClass.h"
|
#include "UtilityClass.h"
|
||||||
|
|
||||||
#include <limits.h>
|
|
||||||
|
|
||||||
scriptclass::scriptclass()
|
scriptclass::scriptclass()
|
||||||
{
|
{
|
||||||
//Start SDL
|
//Start SDL
|
||||||
|
|
Loading…
Reference in a new issue