#pragma once #include namespace Deer { // This namespace implements all interface ported from c++ ImGui to an easier lua aproach with simplifications namespace UIEngine { void initialize(); void deinitialize(); void execute(); } namespace DataStore { int getIconId(const std::string& name); } }