From 27fc86e8c0450a7fe33d76344c4d53e23a70a6c3 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 5 Jul 2023 20:28:50 +0100 Subject: add empty files for plugin source code --- src/Plugins/World/Common/PiWorldGraph.cpp | 7 +++++++ src/Plugins/World/Common/PiWorldGraph.h | 5 +++++ src/Plugins/World/Common/PiWorldSettlement.cpp | 7 +++++++ src/Plugins/World/Common/PiWorldSettlement.h | 5 +++++ src/Plugins/World/Common/T2Baseball.cpp | 7 +++++++ src/Plugins/World/Common/T2Baseball.h | 5 +++++ 6 files changed, 36 insertions(+) create mode 100644 src/Plugins/World/Common/PiWorldGraph.cpp create mode 100644 src/Plugins/World/Common/PiWorldGraph.h create mode 100644 src/Plugins/World/Common/PiWorldSettlement.cpp create mode 100644 src/Plugins/World/Common/PiWorldSettlement.h create mode 100644 src/Plugins/World/Common/T2Baseball.cpp create mode 100644 src/Plugins/World/Common/T2Baseball.h (limited to 'src/Plugins/World/Common') diff --git a/src/Plugins/World/Common/PiWorldGraph.cpp b/src/Plugins/World/Common/PiWorldGraph.cpp new file mode 100644 index 0000000..fb64db8 --- /dev/null +++ b/src/Plugins/World/Common/PiWorldGraph.cpp @@ -0,0 +1,7 @@ +#include "PiWorldGraph.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/World/Common/PiWorldGraph.h b/src/Plugins/World/Common/PiWorldGraph.h new file mode 100644 index 0000000..a611cc0 --- /dev/null +++ b/src/Plugins/World/Common/PiWorldGraph.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class PiWorldGraph { +}; diff --git a/src/Plugins/World/Common/PiWorldSettlement.cpp b/src/Plugins/World/Common/PiWorldSettlement.cpp new file mode 100644 index 0000000..efa6e48 --- /dev/null +++ b/src/Plugins/World/Common/PiWorldSettlement.cpp @@ -0,0 +1,7 @@ +#include "PiWorldSettlement.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/World/Common/PiWorldSettlement.h b/src/Plugins/World/Common/PiWorldSettlement.h new file mode 100644 index 0000000..bee0b42 --- /dev/null +++ b/src/Plugins/World/Common/PiWorldSettlement.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class PiWorldSettlement { +}; diff --git a/src/Plugins/World/Common/T2Baseball.cpp b/src/Plugins/World/Common/T2Baseball.cpp new file mode 100644 index 0000000..1c58f86 --- /dev/null +++ b/src/Plugins/World/Common/T2Baseball.cpp @@ -0,0 +1,7 @@ +#include "T2Baseball.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/World/Common/T2Baseball.h b/src/Plugins/World/Common/T2Baseball.h new file mode 100644 index 0000000..cc4f600 --- /dev/null +++ b/src/Plugins/World/Common/T2Baseball.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class T2Baseball { +}; -- cgit v1.2.3