diff --git a/Core/Controllers/HideoutController.cs b/Core/Controllers/HideoutController.cs new file mode 100644 index 00000000..e672d1fd --- /dev/null +++ b/Core/Controllers/HideoutController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class HideoutController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/InRaidController.cs b/Core/Controllers/InRaidController.cs new file mode 100644 index 00000000..b0dc011f --- /dev/null +++ b/Core/Controllers/InRaidController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class InRaidController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/InsuranceController.cs b/Core/Controllers/InsuranceController.cs new file mode 100644 index 00000000..58bdb714 --- /dev/null +++ b/Core/Controllers/InsuranceController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class InsuranceController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/InventoryController.cs b/Core/Controllers/InventoryController.cs new file mode 100644 index 00000000..3cad5447 --- /dev/null +++ b/Core/Controllers/InventoryController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class InventoryController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/LauncherController.cs b/Core/Controllers/LauncherController.cs new file mode 100644 index 00000000..5255d2be --- /dev/null +++ b/Core/Controllers/LauncherController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class LauncherController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/LocationController.cs b/Core/Controllers/LocationController.cs new file mode 100644 index 00000000..d8fe53b2 --- /dev/null +++ b/Core/Controllers/LocationController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class LocationController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/MatchController.cs b/Core/Controllers/MatchController.cs new file mode 100644 index 00000000..020017bb --- /dev/null +++ b/Core/Controllers/MatchController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class MatchController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/NoteController.cs b/Core/Controllers/NoteController.cs new file mode 100644 index 00000000..53f655f5 --- /dev/null +++ b/Core/Controllers/NoteController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class NoteController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/NotifierController.cs b/Core/Controllers/NotifierController.cs new file mode 100644 index 00000000..3124c340 --- /dev/null +++ b/Core/Controllers/NotifierController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class NotifierController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/PresetController.cs b/Core/Controllers/PresetController.cs new file mode 100644 index 00000000..64000ba5 --- /dev/null +++ b/Core/Controllers/PresetController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class PresetController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/PrestigeController.cs b/Core/Controllers/PrestigeController.cs new file mode 100644 index 00000000..c4973ab2 --- /dev/null +++ b/Core/Controllers/PrestigeController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class PrestigeController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/ProfileController.cs b/Core/Controllers/ProfileController.cs new file mode 100644 index 00000000..f468531a --- /dev/null +++ b/Core/Controllers/ProfileController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class ProfileController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/QuestController.cs b/Core/Controllers/QuestController.cs new file mode 100644 index 00000000..50b51de4 --- /dev/null +++ b/Core/Controllers/QuestController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class QuestController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/RagfairController.cs b/Core/Controllers/RagfairController.cs new file mode 100644 index 00000000..7dc405fd --- /dev/null +++ b/Core/Controllers/RagfairController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class RagfairController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/RepairController.cs b/Core/Controllers/RepairController.cs new file mode 100644 index 00000000..633517c1 --- /dev/null +++ b/Core/Controllers/RepairController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class RepairController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/RepeatableQuestController.cs b/Core/Controllers/RepeatableQuestController.cs new file mode 100644 index 00000000..0c3c57ab --- /dev/null +++ b/Core/Controllers/RepeatableQuestController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class RepeatableQuestController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/TradeController.cs b/Core/Controllers/TradeController.cs new file mode 100644 index 00000000..265ab05f --- /dev/null +++ b/Core/Controllers/TradeController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class TradeController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/TraderController.cs b/Core/Controllers/TraderController.cs new file mode 100644 index 00000000..0a7e5655 --- /dev/null +++ b/Core/Controllers/TraderController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class TraderController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/WeatherController.cs b/Core/Controllers/WeatherController.cs new file mode 100644 index 00000000..2f47d67e --- /dev/null +++ b/Core/Controllers/WeatherController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class WeatherController +{ + // TODO +} \ No newline at end of file diff --git a/Core/Controllers/WishlistController.cs b/Core/Controllers/WishlistController.cs new file mode 100644 index 00000000..c7a498c8 --- /dev/null +++ b/Core/Controllers/WishlistController.cs @@ -0,0 +1,6 @@ +namespace Core.Controllers; + +public class WishlistController +{ + // TODO +} \ No newline at end of file