diff options
Diffstat (limited to 'src/Plugins/Urban/School')
-rw-r--r-- | src/Plugins/Urban/School/School.cpp | 7 | ||||
-rw-r--r-- | src/Plugins/Urban/School/School.h | 5 | ||||
-rw-r--r-- | src/Plugins/Urban/School/SchoolPlugin.cpp | 7 | ||||
-rw-r--r-- | src/Plugins/Urban/School/SchoolPlugin.h | 5 |
4 files changed, 24 insertions, 0 deletions
diff --git a/src/Plugins/Urban/School/School.cpp b/src/Plugins/Urban/School/School.cpp new file mode 100644 index 0000000..c038f48 --- /dev/null +++ b/src/Plugins/Urban/School/School.cpp @@ -0,0 +1,7 @@ +#include "School.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/Urban/School/School.h b/src/Plugins/Urban/School/School.h new file mode 100644 index 0000000..de72c36 --- /dev/null +++ b/src/Plugins/Urban/School/School.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class School { +}; diff --git a/src/Plugins/Urban/School/SchoolPlugin.cpp b/src/Plugins/Urban/School/SchoolPlugin.cpp new file mode 100644 index 0000000..1213ac6 --- /dev/null +++ b/src/Plugins/Urban/School/SchoolPlugin.cpp @@ -0,0 +1,7 @@ +#include "SchoolPlugin.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/Urban/School/SchoolPlugin.h b/src/Plugins/Urban/School/SchoolPlugin.h new file mode 100644 index 0000000..4bc0bb3 --- /dev/null +++ b/src/Plugins/Urban/School/SchoolPlugin.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class SchoolPlugin { +}; |