various header files added/updated
- Created a header file called players. added a helper function to get the gameobject of all players, the gameobject of the local player and the NolanBehaviour component - Added UnityCore file to make it easier for us to use unity functions - Misc file fully updated - Added Wrapper class to make it easier to use il2cpp functions - ClientHelper updated - color.hpp library was included in the project to make the console colorful
This commit is contained in:
11
user/players/players.h
Normal file
11
user/players/players.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
#include <vector>
|
||||
|
||||
namespace Players {
|
||||
app::GameObject__Array* GetAllPlayers();
|
||||
}
|
||||
|
||||
namespace Player {
|
||||
app::GameObject* GetLocalPlayer();
|
||||
app::NolanBehaviour* GetNolan();
|
||||
}
|
||||
Reference in New Issue
Block a user