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/Equip/Dust/Dust.cpp | 7 +++++++ src/Plugins/Equip/Dust/Dust.h | 5 +++++ src/Plugins/Equip/Dust/DustDef.cpp | 7 +++++++ src/Plugins/Equip/Dust/DustDef.h | 5 +++++ src/Plugins/Equip/Dust/DustPlugin.cpp | 7 +++++++ src/Plugins/Equip/Dust/DustPlugin.h | 5 +++++ 6 files changed, 36 insertions(+) create mode 100644 src/Plugins/Equip/Dust/Dust.cpp create mode 100644 src/Plugins/Equip/Dust/Dust.h create mode 100644 src/Plugins/Equip/Dust/DustDef.cpp create mode 100644 src/Plugins/Equip/Dust/DustDef.h create mode 100644 src/Plugins/Equip/Dust/DustPlugin.cpp create mode 100644 src/Plugins/Equip/Dust/DustPlugin.h (limited to 'src/Plugins/Equip/Dust') diff --git a/src/Plugins/Equip/Dust/Dust.cpp b/src/Plugins/Equip/Dust/Dust.cpp new file mode 100644 index 0000000..627479e --- /dev/null +++ b/src/Plugins/Equip/Dust/Dust.cpp @@ -0,0 +1,7 @@ +#include "Dust.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/Equip/Dust/Dust.h b/src/Plugins/Equip/Dust/Dust.h new file mode 100644 index 0000000..834dcec --- /dev/null +++ b/src/Plugins/Equip/Dust/Dust.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class Dust { +}; diff --git a/src/Plugins/Equip/Dust/DustDef.cpp b/src/Plugins/Equip/Dust/DustDef.cpp new file mode 100644 index 0000000..047e642 --- /dev/null +++ b/src/Plugins/Equip/Dust/DustDef.cpp @@ -0,0 +1,7 @@ +#include "DustDef.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/Equip/Dust/DustDef.h b/src/Plugins/Equip/Dust/DustDef.h new file mode 100644 index 0000000..ff77834 --- /dev/null +++ b/src/Plugins/Equip/Dust/DustDef.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class DustDef { +}; diff --git a/src/Plugins/Equip/Dust/DustPlugin.cpp b/src/Plugins/Equip/Dust/DustPlugin.cpp new file mode 100644 index 0000000..3ecf802 --- /dev/null +++ b/src/Plugins/Equip/Dust/DustPlugin.cpp @@ -0,0 +1,7 @@ +#include "DustPlugin.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif diff --git a/src/Plugins/Equip/Dust/DustPlugin.h b/src/Plugins/Equip/Dust/DustPlugin.h new file mode 100644 index 0000000..453daf4 --- /dev/null +++ b/src/Plugins/Equip/Dust/DustPlugin.h @@ -0,0 +1,5 @@ +#pragma once +#include "common.h" + +class DustPlugin { +}; -- cgit v1.2.3