17 lines
359 B
C++

#pragma once
#include <string>
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);
}
}