initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#include "HydraObject.h"
|
||||
#include "HydraEngine.h"
|
||||
|
||||
HydraEngine *const HydraObject::GetEngine()
|
||||
{
|
||||
return HydraEngine::GetInstance();
|
||||
}
|
||||
|
||||
void HydraObject::DebugLog(std::string log_entry)
|
||||
{
|
||||
std::cout << log_entry + "\r\n";
|
||||
}
|
||||
|
||||
void HydraObject::ClearLog()
|
||||
{
|
||||
std::cout << "\x1B[2J\x1B[H";
|
||||
}
|
||||
Reference in New Issue
Block a user