-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46ce7ed
commit f89f59c
Showing
4 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ CMakeSettings.json | |
build/ | ||
/.xmake | ||
/CMakeLists.txt | ||
/bin | ||
/bin | ||
.cache/clangd/index |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#pragma once | ||
#include "GMLIB/DllExport.h" | ||
#include "mc/network/packet/PlayerListEntry.h" | ||
namespace GMLIB::FakeListAPI{ | ||
GMLIB_API bool addFakeList(PlayerListEntry entry); | ||
|
||
GMLIB_API bool addFakeList(std::string name, std::string xuid, long long auid, mce::UUID UUID); | ||
|
||
GMLIB_API bool removeFakeList(std::string nameOrXuid); | ||
|
||
GMLIB_API void removeAllFakeLists(); | ||
|
||
GMLIB_API bool checkFakeListExists(std::string name,std::string xuid); | ||
|
||
GMLIB_API std::vector<std::string> externAllFakeListName(); | ||
|
||
//GMLIB_API | ||
|
||
//GMLIB_API | ||
|
||
//GMLIB_API | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters