1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-09 22:33:38 +02:00

Remove include guards from Scripts.cpp and TerminalScripts.cpp

These files are never included, so why do they have include guards?
This commit is contained in:
Misa 2020-06-11 17:51:42 -07:00 committed by Ethan Lee
parent eb5fb3dff5
commit 2967e308ae
2 changed files with 0 additions and 9 deletions

View File

@ -1,6 +1,3 @@
#ifndef SCRIPTS_H
#define SCRIPTS_H
#include "Script.h"
void scriptclass::load(std::string t)
@ -6756,4 +6753,3 @@ void scriptclass::load(std::string t)
}
}
#endif /* SCRIPTS_H */

View File

@ -1,6 +1,3 @@
#ifndef TERMINALSCRIPTS_H
#define TERMINALSCRIPTS_H
#include "Script.h"
void scriptclass::loadother(std::string t)
@ -1019,5 +1016,3 @@ void scriptclass::loadother(std::string t)
filllines(lines);
}
}
#endif /* TERMINALSCRIPTS_H */