18 lines
299 B
C++
18 lines
299 B
C++
#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";
|
|
}
|