mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01: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:
parent
eb5fb3dff5
commit
2967e308ae
2 changed files with 0 additions and 9 deletions
|
@ -1,6 +1,3 @@
|
||||||
#ifndef SCRIPTS_H
|
|
||||||
#define SCRIPTS_H
|
|
||||||
|
|
||||||
#include "Script.h"
|
#include "Script.h"
|
||||||
|
|
||||||
void scriptclass::load(std::string t)
|
void scriptclass::load(std::string t)
|
||||||
|
@ -6756,4 +6753,3 @@ void scriptclass::load(std::string t)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif /* SCRIPTS_H */
|
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
#ifndef TERMINALSCRIPTS_H
|
|
||||||
#define TERMINALSCRIPTS_H
|
|
||||||
|
|
||||||
#include "Script.h"
|
#include "Script.h"
|
||||||
|
|
||||||
void scriptclass::loadother(std::string t)
|
void scriptclass::loadother(std::string t)
|
||||||
|
@ -1019,5 +1016,3 @@ void scriptclass::loadother(std::string t)
|
||||||
filllines(lines);
|
filllines(lines);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* TERMINALSCRIPTS_H */
|
|
||||||
|
|
Loading…
Reference in a new issue