summaryrefslogtreecommitdiff
path: root/src/Plugins/Food
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/Food
parent6f9dd03d70dc9121fb5f898b266d19b411c8459c (diff)
downloadt2win-27fc86e8c0450a7fe33d76344c4d53e23a70a6c3.tar.gz
t2win-27fc86e8c0450a7fe33d76344c4d53e23a70a6c3.zip
add empty files for plugin source code
Diffstat (limited to 'src/Plugins/Food')
-rw-r--r--src/Plugins/Food/Burger/Burger.cpp7
-rw-r--r--src/Plugins/Food/Burger/Burger.h5
-rw-r--r--src/Plugins/Food/Cafe/Cafe.cpp7
-rw-r--r--src/Plugins/Food/Cafe/Cafe.h5
-rw-r--r--src/Plugins/Food/Chinese/Chinese.cpp7
-rw-r--r--src/Plugins/Food/Chinese/Chinese.h5
-rw-r--r--src/Plugins/Food/Cocktail/Cocktail.cpp7
-rw-r--r--src/Plugins/Food/Cocktail/Cocktail.h5
-rw-r--r--src/Plugins/Food/Common/FoodDef.cpp7
-rw-r--r--src/Plugins/Food/Common/FoodDef.h5
-rw-r--r--src/Plugins/Food/Common/FoodPlugin.cpp7
-rw-r--r--src/Plugins/Food/Common/FoodPlugin.h5
-rw-r--r--src/Plugins/Food/Dango/Dango.cpp7
-rw-r--r--src/Plugins/Food/Dango/Dango.h5
-rw-r--r--src/Plugins/Food/Famires/Famires.cpp7
-rw-r--r--src/Plugins/Food/Famires/Famires.h5
-rw-r--r--src/Plugins/Food/FoodCoat/FoodCoat.cpp7
-rw-r--r--src/Plugins/Food/FoodCoat/FoodCoat.h5
-rw-r--r--src/Plugins/Food/French/French.cpp7
-rw-r--r--src/Plugins/Food/French/French.h5
-rw-r--r--src/Plugins/Food/Indo/Indo.cpp7
-rw-r--r--src/Plugins/Food/Indo/Indo.h5
-rw-r--r--src/Plugins/Food/Italian/Italian.cpp7
-rw-r--r--src/Plugins/Food/Italian/Italian.h5
-rw-r--r--src/Plugins/Food/Izakaya/Izakaya.cpp7
-rw-r--r--src/Plugins/Food/Izakaya/Izakaya.h5
-rw-r--r--src/Plugins/Food/JapaneseFood/JapaneseFood.cpp7
-rw-r--r--src/Plugins/Food/JapaneseFood/JapaneseFood.h5
-rw-r--r--src/Plugins/Food/Keishoku/Keishoku.cpp7
-rw-r--r--src/Plugins/Food/Keishoku/Keishoku.h5
-rw-r--r--src/Plugins/Food/Mexco/Mexco.cpp7
-rw-r--r--src/Plugins/Food/Mexco/Mexco.h5
-rw-r--r--src/Plugins/Food/Ramen/Ramen.cpp7
-rw-r--r--src/Plugins/Food/Ramen/Ramen.h5
-rw-r--r--src/Plugins/Food/SeaFood/SeaFood.cpp7
-rw-r--r--src/Plugins/Food/SeaFood/SeaFood.h5
-rw-r--r--src/Plugins/Food/Shokudou/Shokudou.cpp7
-rw-r--r--src/Plugins/Food/Shokudou/Shokudou.h5
-rw-r--r--src/Plugins/Food/StandSoba/StandSoba.cpp7
-rw-r--r--src/Plugins/Food/StandSoba/StandSoba.h5
-rw-r--r--src/Plugins/Food/Steak/Steak.cpp7
-rw-r--r--src/Plugins/Food/Steak/Steak.h5
-rw-r--r--src/Plugins/Food/Susi/Susi.cpp7
-rw-r--r--src/Plugins/Food/Susi/Susi.h5
-rw-r--r--src/Plugins/Food/Yakiniku/Yakiniku.cpp7
-rw-r--r--src/Plugins/Food/Yakiniku/Yakiniku.h5
46 files changed, 276 insertions, 0 deletions
diff --git a/src/Plugins/Food/Burger/Burger.cpp b/src/Plugins/Food/Burger/Burger.cpp
new file mode 100644
index 0000000..4b81d7b
--- /dev/null
+++ b/src/Plugins/Food/Burger/Burger.cpp
@@ -0,0 +1,7 @@
+#include "Burger.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Burger/Burger.h b/src/Plugins/Food/Burger/Burger.h
new file mode 100644
index 0000000..a99da1b
--- /dev/null
+++ b/src/Plugins/Food/Burger/Burger.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Burger {
+};
diff --git a/src/Plugins/Food/Cafe/Cafe.cpp b/src/Plugins/Food/Cafe/Cafe.cpp
new file mode 100644
index 0000000..a6c7ce7
--- /dev/null
+++ b/src/Plugins/Food/Cafe/Cafe.cpp
@@ -0,0 +1,7 @@
+#include "Cafe.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Cafe/Cafe.h b/src/Plugins/Food/Cafe/Cafe.h
new file mode 100644
index 0000000..ca77bd7
--- /dev/null
+++ b/src/Plugins/Food/Cafe/Cafe.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Cafe {
+};
diff --git a/src/Plugins/Food/Chinese/Chinese.cpp b/src/Plugins/Food/Chinese/Chinese.cpp
new file mode 100644
index 0000000..4460f94
--- /dev/null
+++ b/src/Plugins/Food/Chinese/Chinese.cpp
@@ -0,0 +1,7 @@
+#include "Chinese.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Chinese/Chinese.h b/src/Plugins/Food/Chinese/Chinese.h
new file mode 100644
index 0000000..248120a
--- /dev/null
+++ b/src/Plugins/Food/Chinese/Chinese.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Chinese {
+};
diff --git a/src/Plugins/Food/Cocktail/Cocktail.cpp b/src/Plugins/Food/Cocktail/Cocktail.cpp
new file mode 100644
index 0000000..be93a6d
--- /dev/null
+++ b/src/Plugins/Food/Cocktail/Cocktail.cpp
@@ -0,0 +1,7 @@
+#include "Cocktail.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Cocktail/Cocktail.h b/src/Plugins/Food/Cocktail/Cocktail.h
new file mode 100644
index 0000000..50ed882
--- /dev/null
+++ b/src/Plugins/Food/Cocktail/Cocktail.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Cocktail {
+};
diff --git a/src/Plugins/Food/Common/FoodDef.cpp b/src/Plugins/Food/Common/FoodDef.cpp
new file mode 100644
index 0000000..821a063
--- /dev/null
+++ b/src/Plugins/Food/Common/FoodDef.cpp
@@ -0,0 +1,7 @@
+#include "FoodDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Common/FoodDef.h b/src/Plugins/Food/Common/FoodDef.h
new file mode 100644
index 0000000..93bbe62
--- /dev/null
+++ b/src/Plugins/Food/Common/FoodDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class FoodDef {
+};
diff --git a/src/Plugins/Food/Common/FoodPlugin.cpp b/src/Plugins/Food/Common/FoodPlugin.cpp
new file mode 100644
index 0000000..2b5d041
--- /dev/null
+++ b/src/Plugins/Food/Common/FoodPlugin.cpp
@@ -0,0 +1,7 @@
+#include "FoodPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Common/FoodPlugin.h b/src/Plugins/Food/Common/FoodPlugin.h
new file mode 100644
index 0000000..157d64c
--- /dev/null
+++ b/src/Plugins/Food/Common/FoodPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class FoodPlugin {
+};
diff --git a/src/Plugins/Food/Dango/Dango.cpp b/src/Plugins/Food/Dango/Dango.cpp
new file mode 100644
index 0000000..dcba7d9
--- /dev/null
+++ b/src/Plugins/Food/Dango/Dango.cpp
@@ -0,0 +1,7 @@
+#include "Dango.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Dango/Dango.h b/src/Plugins/Food/Dango/Dango.h
new file mode 100644
index 0000000..150aa3c
--- /dev/null
+++ b/src/Plugins/Food/Dango/Dango.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Dango {
+};
diff --git a/src/Plugins/Food/Famires/Famires.cpp b/src/Plugins/Food/Famires/Famires.cpp
new file mode 100644
index 0000000..642d1eb
--- /dev/null
+++ b/src/Plugins/Food/Famires/Famires.cpp
@@ -0,0 +1,7 @@
+#include "Famires.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Famires/Famires.h b/src/Plugins/Food/Famires/Famires.h
new file mode 100644
index 0000000..6c51118
--- /dev/null
+++ b/src/Plugins/Food/Famires/Famires.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Famires {
+};
diff --git a/src/Plugins/Food/FoodCoat/FoodCoat.cpp b/src/Plugins/Food/FoodCoat/FoodCoat.cpp
new file mode 100644
index 0000000..40757e6
--- /dev/null
+++ b/src/Plugins/Food/FoodCoat/FoodCoat.cpp
@@ -0,0 +1,7 @@
+#include "FoodCoat.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/FoodCoat/FoodCoat.h b/src/Plugins/Food/FoodCoat/FoodCoat.h
new file mode 100644
index 0000000..42de77a
--- /dev/null
+++ b/src/Plugins/Food/FoodCoat/FoodCoat.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class FoodCoat {
+};
diff --git a/src/Plugins/Food/French/French.cpp b/src/Plugins/Food/French/French.cpp
new file mode 100644
index 0000000..96130d3
--- /dev/null
+++ b/src/Plugins/Food/French/French.cpp
@@ -0,0 +1,7 @@
+#include "French.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/French/French.h b/src/Plugins/Food/French/French.h
new file mode 100644
index 0000000..a960ee1
--- /dev/null
+++ b/src/Plugins/Food/French/French.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class French {
+};
diff --git a/src/Plugins/Food/Indo/Indo.cpp b/src/Plugins/Food/Indo/Indo.cpp
new file mode 100644
index 0000000..e6bb86a
--- /dev/null
+++ b/src/Plugins/Food/Indo/Indo.cpp
@@ -0,0 +1,7 @@
+#include "Indo.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Indo/Indo.h b/src/Plugins/Food/Indo/Indo.h
new file mode 100644
index 0000000..a71e285
--- /dev/null
+++ b/src/Plugins/Food/Indo/Indo.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Indo {
+};
diff --git a/src/Plugins/Food/Italian/Italian.cpp b/src/Plugins/Food/Italian/Italian.cpp
new file mode 100644
index 0000000..39413df
--- /dev/null
+++ b/src/Plugins/Food/Italian/Italian.cpp
@@ -0,0 +1,7 @@
+#include "Italian.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Italian/Italian.h b/src/Plugins/Food/Italian/Italian.h
new file mode 100644
index 0000000..8f57aca
--- /dev/null
+++ b/src/Plugins/Food/Italian/Italian.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Italian {
+};
diff --git a/src/Plugins/Food/Izakaya/Izakaya.cpp b/src/Plugins/Food/Izakaya/Izakaya.cpp
new file mode 100644
index 0000000..2a7101b
--- /dev/null
+++ b/src/Plugins/Food/Izakaya/Izakaya.cpp
@@ -0,0 +1,7 @@
+#include "Izakaya.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Izakaya/Izakaya.h b/src/Plugins/Food/Izakaya/Izakaya.h
new file mode 100644
index 0000000..eb1b3c5
--- /dev/null
+++ b/src/Plugins/Food/Izakaya/Izakaya.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Izakaya {
+};
diff --git a/src/Plugins/Food/JapaneseFood/JapaneseFood.cpp b/src/Plugins/Food/JapaneseFood/JapaneseFood.cpp
new file mode 100644
index 0000000..68351d1
--- /dev/null
+++ b/src/Plugins/Food/JapaneseFood/JapaneseFood.cpp
@@ -0,0 +1,7 @@
+#include "JapaneseFood.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/JapaneseFood/JapaneseFood.h b/src/Plugins/Food/JapaneseFood/JapaneseFood.h
new file mode 100644
index 0000000..ca08e7b
--- /dev/null
+++ b/src/Plugins/Food/JapaneseFood/JapaneseFood.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class JapaneseFood {
+};
diff --git a/src/Plugins/Food/Keishoku/Keishoku.cpp b/src/Plugins/Food/Keishoku/Keishoku.cpp
new file mode 100644
index 0000000..4ce7732
--- /dev/null
+++ b/src/Plugins/Food/Keishoku/Keishoku.cpp
@@ -0,0 +1,7 @@
+#include "Keishoku.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Keishoku/Keishoku.h b/src/Plugins/Food/Keishoku/Keishoku.h
new file mode 100644
index 0000000..e41834d
--- /dev/null
+++ b/src/Plugins/Food/Keishoku/Keishoku.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Keishoku {
+};
diff --git a/src/Plugins/Food/Mexco/Mexco.cpp b/src/Plugins/Food/Mexco/Mexco.cpp
new file mode 100644
index 0000000..b73142d
--- /dev/null
+++ b/src/Plugins/Food/Mexco/Mexco.cpp
@@ -0,0 +1,7 @@
+#include "Mexco.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Mexco/Mexco.h b/src/Plugins/Food/Mexco/Mexco.h
new file mode 100644
index 0000000..147be53
--- /dev/null
+++ b/src/Plugins/Food/Mexco/Mexco.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Mexco {
+};
diff --git a/src/Plugins/Food/Ramen/Ramen.cpp b/src/Plugins/Food/Ramen/Ramen.cpp
new file mode 100644
index 0000000..dfb6cc7
--- /dev/null
+++ b/src/Plugins/Food/Ramen/Ramen.cpp
@@ -0,0 +1,7 @@
+#include "Ramen.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Ramen/Ramen.h b/src/Plugins/Food/Ramen/Ramen.h
new file mode 100644
index 0000000..9c150ea
--- /dev/null
+++ b/src/Plugins/Food/Ramen/Ramen.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Ramen {
+};
diff --git a/src/Plugins/Food/SeaFood/SeaFood.cpp b/src/Plugins/Food/SeaFood/SeaFood.cpp
new file mode 100644
index 0000000..cbf4778
--- /dev/null
+++ b/src/Plugins/Food/SeaFood/SeaFood.cpp
@@ -0,0 +1,7 @@
+#include "SeaFood.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/SeaFood/SeaFood.h b/src/Plugins/Food/SeaFood/SeaFood.h
new file mode 100644
index 0000000..3bea8f3
--- /dev/null
+++ b/src/Plugins/Food/SeaFood/SeaFood.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class SeaFood {
+};
diff --git a/src/Plugins/Food/Shokudou/Shokudou.cpp b/src/Plugins/Food/Shokudou/Shokudou.cpp
new file mode 100644
index 0000000..5bfcc9b
--- /dev/null
+++ b/src/Plugins/Food/Shokudou/Shokudou.cpp
@@ -0,0 +1,7 @@
+#include "Shokudou.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Shokudou/Shokudou.h b/src/Plugins/Food/Shokudou/Shokudou.h
new file mode 100644
index 0000000..0217cb4
--- /dev/null
+++ b/src/Plugins/Food/Shokudou/Shokudou.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Shokudou {
+};
diff --git a/src/Plugins/Food/StandSoba/StandSoba.cpp b/src/Plugins/Food/StandSoba/StandSoba.cpp
new file mode 100644
index 0000000..0e11ccb
--- /dev/null
+++ b/src/Plugins/Food/StandSoba/StandSoba.cpp
@@ -0,0 +1,7 @@
+#include "StandSoba.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/StandSoba/StandSoba.h b/src/Plugins/Food/StandSoba/StandSoba.h
new file mode 100644
index 0000000..72d6358
--- /dev/null
+++ b/src/Plugins/Food/StandSoba/StandSoba.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class StandSoba {
+};
diff --git a/src/Plugins/Food/Steak/Steak.cpp b/src/Plugins/Food/Steak/Steak.cpp
new file mode 100644
index 0000000..42f5c7f
--- /dev/null
+++ b/src/Plugins/Food/Steak/Steak.cpp
@@ -0,0 +1,7 @@
+#include "Steak.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Steak/Steak.h b/src/Plugins/Food/Steak/Steak.h
new file mode 100644
index 0000000..ba9f5a6
--- /dev/null
+++ b/src/Plugins/Food/Steak/Steak.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Steak {
+};
diff --git a/src/Plugins/Food/Susi/Susi.cpp b/src/Plugins/Food/Susi/Susi.cpp
new file mode 100644
index 0000000..7380ad5
--- /dev/null
+++ b/src/Plugins/Food/Susi/Susi.cpp
@@ -0,0 +1,7 @@
+#include "Susi.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Susi/Susi.h b/src/Plugins/Food/Susi/Susi.h
new file mode 100644
index 0000000..e29c5f3
--- /dev/null
+++ b/src/Plugins/Food/Susi/Susi.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Susi {
+};
diff --git a/src/Plugins/Food/Yakiniku/Yakiniku.cpp b/src/Plugins/Food/Yakiniku/Yakiniku.cpp
new file mode 100644
index 0000000..16da063
--- /dev/null
+++ b/src/Plugins/Food/Yakiniku/Yakiniku.cpp
@@ -0,0 +1,7 @@
+#include "Yakiniku.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Food/Yakiniku/Yakiniku.h b/src/Plugins/Food/Yakiniku/Yakiniku.h
new file mode 100644
index 0000000..d8e0763
--- /dev/null
+++ b/src/Plugins/Food/Yakiniku/Yakiniku.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Yakiniku {
+};