summaryrefslogtreecommitdiff
path: root/src/Plugins/Urban
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-07-05 20:28:50 +0100
committerAsh Wolf <ninji@wuffs.org>2023-07-05 20:28:50 +0100
commit27fc86e8c0450a7fe33d76344c4d53e23a70a6c3 (patch)
treedfeb7e4acad0ce0f9f1581401366488df119bb38 /src/Plugins/Urban
parent6f9dd03d70dc9121fb5f898b266d19b411c8459c (diff)
downloadt2win-27fc86e8c0450a7fe33d76344c4d53e23a70a6c3.tar.gz
t2win-27fc86e8c0450a7fe33d76344c4d53e23a70a6c3.zip
add empty files for plugin source code
Diffstat (limited to 'src/Plugins/Urban')
-rw-r--r--src/Plugins/Urban/Boatkeeper/Boatkeeper.cpp7
-rw-r--r--src/Plugins/Urban/Boatkeeper/Boatkeeper.h5
-rw-r--r--src/Plugins/Urban/Boatkeeper/BoatkeeperDef.cpp7
-rw-r--r--src/Plugins/Urban/Boatkeeper/BoatkeeperDef.h5
-rw-r--r--src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.cpp7
-rw-r--r--src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.h5
-rw-r--r--src/Plugins/Urban/EventHall/EventHall.cpp7
-rw-r--r--src/Plugins/Urban/EventHall/EventHall.h5
-rw-r--r--src/Plugins/Urban/EventHall/EventHallDef.cpp7
-rw-r--r--src/Plugins/Urban/EventHall/EventHallDef.h5
-rw-r--r--src/Plugins/Urban/EventHall/EventHallPlugin.cpp7
-rw-r--r--src/Plugins/Urban/EventHall/EventHallPlugin.h5
-rw-r--r--src/Plugins/Urban/IkoiHiroba/IkoiHiroba.cpp7
-rw-r--r--src/Plugins/Urban/IkoiHiroba/IkoiHiroba.h5
-rw-r--r--src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.cpp7
-rw-r--r--src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.h5
-rw-r--r--src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.cpp7
-rw-r--r--src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.h5
-rw-r--r--src/Plugins/Urban/MeigaTheater/MeigaTheater.cpp7
-rw-r--r--src/Plugins/Urban/MeigaTheater/MeigaTheater.h5
-rw-r--r--src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.cpp7
-rw-r--r--src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.h5
-rw-r--r--src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.cpp7
-rw-r--r--src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.h5
-rw-r--r--src/Plugins/Urban/School/School.cpp7
-rw-r--r--src/Plugins/Urban/School/School.h5
-rw-r--r--src/Plugins/Urban/School/SchoolPlugin.cpp7
-rw-r--r--src/Plugins/Urban/School/SchoolPlugin.h5
-rw-r--r--src/Plugins/Urban/Subway/PISubway.cpp7
-rw-r--r--src/Plugins/Urban/Subway/PISubway.h5
-rw-r--r--src/Plugins/Urban/Subway/Subway.cpp7
-rw-r--r--src/Plugins/Urban/Subway/Subway.h5
-rw-r--r--src/Plugins/Urban/Subway/SubwayDef.cpp7
-rw-r--r--src/Plugins/Urban/Subway/SubwayDef.h5
-rw-r--r--src/Plugins/Urban/Subway/SubwayPlugin.cpp7
-rw-r--r--src/Plugins/Urban/Subway/SubwayPlugin.h5
-rw-r--r--src/Plugins/Urban/Theater/Theater.cpp7
-rw-r--r--src/Plugins/Urban/Theater/Theater.h5
-rw-r--r--src/Plugins/Urban/Theater/TheaterDef.cpp7
-rw-r--r--src/Plugins/Urban/Theater/TheaterDef.h5
-rw-r--r--src/Plugins/Urban/Theater/TheaterPlugin.cpp7
-rw-r--r--src/Plugins/Urban/Theater/TheaterPlugin.h5
-rw-r--r--src/Plugins/Urban/Theater/TheaterSubClass.cpp7
-rw-r--r--src/Plugins/Urban/Theater/TheaterSubClass.h5
44 files changed, 264 insertions, 0 deletions
diff --git a/src/Plugins/Urban/Boatkeeper/Boatkeeper.cpp b/src/Plugins/Urban/Boatkeeper/Boatkeeper.cpp
new file mode 100644
index 0000000..39d5868
--- /dev/null
+++ b/src/Plugins/Urban/Boatkeeper/Boatkeeper.cpp
@@ -0,0 +1,7 @@
+#include "Boatkeeper.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Boatkeeper/Boatkeeper.h b/src/Plugins/Urban/Boatkeeper/Boatkeeper.h
new file mode 100644
index 0000000..8d0f1ff
--- /dev/null
+++ b/src/Plugins/Urban/Boatkeeper/Boatkeeper.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Boatkeeper {
+};
diff --git a/src/Plugins/Urban/Boatkeeper/BoatkeeperDef.cpp b/src/Plugins/Urban/Boatkeeper/BoatkeeperDef.cpp
new file mode 100644
index 0000000..0823f16
--- /dev/null
+++ b/src/Plugins/Urban/Boatkeeper/BoatkeeperDef.cpp
@@ -0,0 +1,7 @@
+#include "BoatkeeperDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Boatkeeper/BoatkeeperDef.h b/src/Plugins/Urban/Boatkeeper/BoatkeeperDef.h
new file mode 100644
index 0000000..3d173a1
--- /dev/null
+++ b/src/Plugins/Urban/Boatkeeper/BoatkeeperDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class BoatkeeperDef {
+};
diff --git a/src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.cpp b/src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.cpp
new file mode 100644
index 0000000..0cc7fde
--- /dev/null
+++ b/src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.cpp
@@ -0,0 +1,7 @@
+#include "BoatkeeperPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.h b/src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.h
new file mode 100644
index 0000000..7cc3118
--- /dev/null
+++ b/src/Plugins/Urban/Boatkeeper/BoatkeeperPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class BoatkeeperPlugin {
+};
diff --git a/src/Plugins/Urban/EventHall/EventHall.cpp b/src/Plugins/Urban/EventHall/EventHall.cpp
new file mode 100644
index 0000000..2d7d768
--- /dev/null
+++ b/src/Plugins/Urban/EventHall/EventHall.cpp
@@ -0,0 +1,7 @@
+#include "EventHall.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/EventHall/EventHall.h b/src/Plugins/Urban/EventHall/EventHall.h
new file mode 100644
index 0000000..d9f0655
--- /dev/null
+++ b/src/Plugins/Urban/EventHall/EventHall.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class EventHall {
+};
diff --git a/src/Plugins/Urban/EventHall/EventHallDef.cpp b/src/Plugins/Urban/EventHall/EventHallDef.cpp
new file mode 100644
index 0000000..3006c62
--- /dev/null
+++ b/src/Plugins/Urban/EventHall/EventHallDef.cpp
@@ -0,0 +1,7 @@
+#include "EventHallDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/EventHall/EventHallDef.h b/src/Plugins/Urban/EventHall/EventHallDef.h
new file mode 100644
index 0000000..66db245
--- /dev/null
+++ b/src/Plugins/Urban/EventHall/EventHallDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class EventHallDef {
+};
diff --git a/src/Plugins/Urban/EventHall/EventHallPlugin.cpp b/src/Plugins/Urban/EventHall/EventHallPlugin.cpp
new file mode 100644
index 0000000..ac024ee
--- /dev/null
+++ b/src/Plugins/Urban/EventHall/EventHallPlugin.cpp
@@ -0,0 +1,7 @@
+#include "EventHallPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/EventHall/EventHallPlugin.h b/src/Plugins/Urban/EventHall/EventHallPlugin.h
new file mode 100644
index 0000000..e227cae
--- /dev/null
+++ b/src/Plugins/Urban/EventHall/EventHallPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class EventHallPlugin {
+};
diff --git a/src/Plugins/Urban/IkoiHiroba/IkoiHiroba.cpp b/src/Plugins/Urban/IkoiHiroba/IkoiHiroba.cpp
new file mode 100644
index 0000000..a15989e
--- /dev/null
+++ b/src/Plugins/Urban/IkoiHiroba/IkoiHiroba.cpp
@@ -0,0 +1,7 @@
+#include "IkoiHiroba.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/IkoiHiroba/IkoiHiroba.h b/src/Plugins/Urban/IkoiHiroba/IkoiHiroba.h
new file mode 100644
index 0000000..ea169c2
--- /dev/null
+++ b/src/Plugins/Urban/IkoiHiroba/IkoiHiroba.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class IkoiHiroba {
+};
diff --git a/src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.cpp b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.cpp
new file mode 100644
index 0000000..ec9ec70
--- /dev/null
+++ b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.cpp
@@ -0,0 +1,7 @@
+#include "IkoiHirobaDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.h b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.h
new file mode 100644
index 0000000..0316ed7
--- /dev/null
+++ b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class IkoiHirobaDef {
+};
diff --git a/src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.cpp b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.cpp
new file mode 100644
index 0000000..794c7e2
--- /dev/null
+++ b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.cpp
@@ -0,0 +1,7 @@
+#include "IkoiHirobaPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.h b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.h
new file mode 100644
index 0000000..3b1de39
--- /dev/null
+++ b/src/Plugins/Urban/IkoiHiroba/IkoiHirobaPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class IkoiHirobaPlugin {
+};
diff --git a/src/Plugins/Urban/MeigaTheater/MeigaTheater.cpp b/src/Plugins/Urban/MeigaTheater/MeigaTheater.cpp
new file mode 100644
index 0000000..9305208
--- /dev/null
+++ b/src/Plugins/Urban/MeigaTheater/MeigaTheater.cpp
@@ -0,0 +1,7 @@
+#include "MeigaTheater.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/MeigaTheater/MeigaTheater.h b/src/Plugins/Urban/MeigaTheater/MeigaTheater.h
new file mode 100644
index 0000000..3827e5a
--- /dev/null
+++ b/src/Plugins/Urban/MeigaTheater/MeigaTheater.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class MeigaTheater {
+};
diff --git a/src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.cpp b/src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.cpp
new file mode 100644
index 0000000..4382355
--- /dev/null
+++ b/src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.cpp
@@ -0,0 +1,7 @@
+#include "MeigaTheaterDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.h b/src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.h
new file mode 100644
index 0000000..cb023e3
--- /dev/null
+++ b/src/Plugins/Urban/MeigaTheater/MeigaTheaterDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class MeigaTheaterDef {
+};
diff --git a/src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.cpp b/src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.cpp
new file mode 100644
index 0000000..a488299
--- /dev/null
+++ b/src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.cpp
@@ -0,0 +1,7 @@
+#include "MeigaTheaterPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.h b/src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.h
new file mode 100644
index 0000000..446f190
--- /dev/null
+++ b/src/Plugins/Urban/MeigaTheater/MeigaTheaterPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class MeigaTheaterPlugin {
+};
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 {
+};
diff --git a/src/Plugins/Urban/Subway/PISubway.cpp b/src/Plugins/Urban/Subway/PISubway.cpp
new file mode 100644
index 0000000..f58e865
--- /dev/null
+++ b/src/Plugins/Urban/Subway/PISubway.cpp
@@ -0,0 +1,7 @@
+#include "PISubway.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Subway/PISubway.h b/src/Plugins/Urban/Subway/PISubway.h
new file mode 100644
index 0000000..6ce73a6
--- /dev/null
+++ b/src/Plugins/Urban/Subway/PISubway.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class PISubway {
+};
diff --git a/src/Plugins/Urban/Subway/Subway.cpp b/src/Plugins/Urban/Subway/Subway.cpp
new file mode 100644
index 0000000..fe1c43f
--- /dev/null
+++ b/src/Plugins/Urban/Subway/Subway.cpp
@@ -0,0 +1,7 @@
+#include "Subway.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Subway/Subway.h b/src/Plugins/Urban/Subway/Subway.h
new file mode 100644
index 0000000..654b4b8
--- /dev/null
+++ b/src/Plugins/Urban/Subway/Subway.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Subway {
+};
diff --git a/src/Plugins/Urban/Subway/SubwayDef.cpp b/src/Plugins/Urban/Subway/SubwayDef.cpp
new file mode 100644
index 0000000..793e2fa
--- /dev/null
+++ b/src/Plugins/Urban/Subway/SubwayDef.cpp
@@ -0,0 +1,7 @@
+#include "SubwayDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Subway/SubwayDef.h b/src/Plugins/Urban/Subway/SubwayDef.h
new file mode 100644
index 0000000..cb261ac
--- /dev/null
+++ b/src/Plugins/Urban/Subway/SubwayDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class SubwayDef {
+};
diff --git a/src/Plugins/Urban/Subway/SubwayPlugin.cpp b/src/Plugins/Urban/Subway/SubwayPlugin.cpp
new file mode 100644
index 0000000..d985af0
--- /dev/null
+++ b/src/Plugins/Urban/Subway/SubwayPlugin.cpp
@@ -0,0 +1,7 @@
+#include "SubwayPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Subway/SubwayPlugin.h b/src/Plugins/Urban/Subway/SubwayPlugin.h
new file mode 100644
index 0000000..1cef142
--- /dev/null
+++ b/src/Plugins/Urban/Subway/SubwayPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class SubwayPlugin {
+};
diff --git a/src/Plugins/Urban/Theater/Theater.cpp b/src/Plugins/Urban/Theater/Theater.cpp
new file mode 100644
index 0000000..afc5df8
--- /dev/null
+++ b/src/Plugins/Urban/Theater/Theater.cpp
@@ -0,0 +1,7 @@
+#include "Theater.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Theater/Theater.h b/src/Plugins/Urban/Theater/Theater.h
new file mode 100644
index 0000000..d7b9292
--- /dev/null
+++ b/src/Plugins/Urban/Theater/Theater.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Theater {
+};
diff --git a/src/Plugins/Urban/Theater/TheaterDef.cpp b/src/Plugins/Urban/Theater/TheaterDef.cpp
new file mode 100644
index 0000000..4b8eb88
--- /dev/null
+++ b/src/Plugins/Urban/Theater/TheaterDef.cpp
@@ -0,0 +1,7 @@
+#include "TheaterDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Theater/TheaterDef.h b/src/Plugins/Urban/Theater/TheaterDef.h
new file mode 100644
index 0000000..33ea046
--- /dev/null
+++ b/src/Plugins/Urban/Theater/TheaterDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class TheaterDef {
+};
diff --git a/src/Plugins/Urban/Theater/TheaterPlugin.cpp b/src/Plugins/Urban/Theater/TheaterPlugin.cpp
new file mode 100644
index 0000000..5ba44d2
--- /dev/null
+++ b/src/Plugins/Urban/Theater/TheaterPlugin.cpp
@@ -0,0 +1,7 @@
+#include "TheaterPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Theater/TheaterPlugin.h b/src/Plugins/Urban/Theater/TheaterPlugin.h
new file mode 100644
index 0000000..4776c42
--- /dev/null
+++ b/src/Plugins/Urban/Theater/TheaterPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class TheaterPlugin {
+};
diff --git a/src/Plugins/Urban/Theater/TheaterSubClass.cpp b/src/Plugins/Urban/Theater/TheaterSubClass.cpp
new file mode 100644
index 0000000..96c7168
--- /dev/null
+++ b/src/Plugins/Urban/Theater/TheaterSubClass.cpp
@@ -0,0 +1,7 @@
+#include "TheaterSubClass.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Urban/Theater/TheaterSubClass.h b/src/Plugins/Urban/Theater/TheaterSubClass.h
new file mode 100644
index 0000000..eef6c0f
--- /dev/null
+++ b/src/Plugins/Urban/Theater/TheaterSubClass.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class TheaterSubClass {
+};