Skip to content

Commit

Permalink
chore: rename my_plugin to my_mod
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Aug 1, 2024
1 parent a58b8ea commit ecdefdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/mod/MyMod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "ll/api/mod/RegisterHelper.h"

namespace my_plugin {
namespace my_mod {

static std::unique_ptr<MyMod> instance;

Expand All @@ -28,6 +28,6 @@ bool MyMod::disable() {
return true;
}

} // namespace my_plugin
} // namespace my_mod

LL_REGISTER_MOD(my_plugin::MyMod, my_plugin::instance);
LL_REGISTER_MOD(my_mod::MyMod, my_mod::instance);
4 changes: 2 additions & 2 deletions src/mod/MyMod.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "ll/api/mod/NativeMod.h"

namespace my_plugin {
namespace my_mod {

class MyMod {

Expand Down Expand Up @@ -30,4 +30,4 @@ class MyMod {
ll::mod::NativeMod& mSelf;
};

} // namespace my_plugin
} // namespace my_mod

0 comments on commit ecdefdd

Please sign in to comment.