- IsKeyDown - GetMousePosition - GetEntity - HasComponent - GetComponent - Added InputKeyCode to C#
16 lines
247 B
C++
16 lines
247 B
C++
#include "EngineNetAPI.h"
|
|
|
|
namespace Nuake {
|
|
|
|
void Log(Coral::NativeString string)
|
|
{
|
|
Logger::Log(string.ToString(), ".net", VERBOSE);
|
|
}
|
|
|
|
void EngineNetAPI::RegisterMethods()
|
|
{
|
|
RegisterMethod("Engine.LoggerLogIcall", (void*)(&Log));
|
|
}
|
|
|
|
}
|