Skip to content

Commit

Permalink
remove a couple LUS::
Browse files Browse the repository at this point in the history
  • Loading branch information
briaguya-ai committed Dec 14, 2024
1 parent c3cd6ce commit 658bd1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ std::shared_ptr<ResourceManager> Context::GetResourceManager() {
return mResourceManager;
}

std::shared_ptr<LUS::ControlDeck> Context::GetControlDeck() {
std::shared_ptr<ControlDeck> Context::GetControlDeck() {
return mControlDeck;
}

Expand Down
4 changes: 2 additions & 2 deletions src/Context.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Context {
std::shared_ptr<Config> GetConfig();
std::shared_ptr<ConsoleVariable> GetConsoleVariables();
std::shared_ptr<ResourceManager> GetResourceManager();
std::shared_ptr<LUS::ControlDeck> GetControlDeck();
std::shared_ptr<ControlDeck> GetControlDeck();
std::shared_ptr<CrashHandler> GetCrashHandler();
std::shared_ptr<Window> GetWindow();
std::shared_ptr<Console> GetConsole();
Expand Down Expand Up @@ -76,7 +76,7 @@ class Context {
std::shared_ptr<Config> mConfig;
std::shared_ptr<ConsoleVariable> mConsoleVariables;
std::shared_ptr<ResourceManager> mResourceManager;
std::shared_ptr<LUS::ControlDeck> mControlDeck;
std::shared_ptr<ControlDeck> mControlDeck;
std::shared_ptr<CrashHandler> mCrashHandler;
std::shared_ptr<Window> mWindow;
std::shared_ptr<Console> mConsole;
Expand Down

0 comments on commit 658bd1d

Please sign in to comment.