From f3aa6e09d4091ac7999db07f457267b570d4a37f Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Mon, 6 Jan 2025 21:52:57 -0500 Subject: [PATCH] Add the rest of the controller classes, currently empty --- Core/Controllers/HideoutController.cs | 6 ++++++ Core/Controllers/InRaidController.cs | 6 ++++++ Core/Controllers/InsuranceController.cs | 6 ++++++ Core/Controllers/InventoryController.cs | 6 ++++++ Core/Controllers/LauncherController.cs | 6 ++++++ Core/Controllers/LocationController.cs | 6 ++++++ Core/Controllers/MatchController.cs | 6 ++++++ Core/Controllers/NoteController.cs | 6 ++++++ Core/Controllers/NotifierController.cs | 6 ++++++ Core/Controllers/PresetController.cs | 6 ++++++ Core/Controllers/PrestigeController.cs | 6 ++++++ Core/Controllers/ProfileController.cs | 6 ++++++ Core/Controllers/QuestController.cs | 6 ++++++ Core/Controllers/RagfairController.cs | 6 ++++++ Core/Controllers/RepairController.cs | 6 ++++++ Core/Controllers/RepeatableQuestController.cs | 6 ++++++ Core/Controllers/TradeController.cs | 6 ++++++ Core/Controllers/TraderController.cs | 6 ++++++ Core/Controllers/WeatherController.cs | 6 ++++++ Core/Controllers/WishlistController.cs | 6 ++++++ 20 files changed, 120 insertions(+) create mode 100644 Core/Controllers/HideoutController.cs create mode 100644 Core/Controllers/InRaidController.cs create mode 100644 Core/Controllers/InsuranceController.cs create mode 100644 Core/Controllers/InventoryController.cs create mode 100644 Core/Controllers/LauncherController.cs create mode 100644 Core/Controllers/LocationController.cs create mode 100644 Core/Controllers/MatchController.cs create mode 100644 Core/Controllers/NoteController.cs create mode 100644 Core/Controllers/NotifierController.cs create mode 100644 Core/Controllers/PresetController.cs create mode 100644 Core/Controllers/PrestigeController.cs create mode 100644 Core/Controllers/ProfileController.cs create mode 100644 Core/Controllers/QuestController.cs create mode 100644 Core/Controllers/RagfairController.cs create mode 100644 Core/Controllers/RepairController.cs create mode 100644 Core/Controllers/RepeatableQuestController.cs create mode 100644 Core/Controllers/TradeController.cs create mode 100644 Core/Controllers/TraderController.cs create mode 100644 Core/Controllers/WeatherController.cs create mode 100644 Core/Controllers/WishlistController.cs 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