11 lines
259 B
C++
11 lines
259 B
C++
#pragma once
|
|
|
|
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();
|
|
}
|
|
} |