1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/** * c_API_graphic.cpp * */ #include "SSystem/SComponent/c_API_graphic.h" #include "SSystem/SComponent/c_API.h" void cAPIGph_Painter() { g_cAPI_Interface.painterMtd(); } void cAPIGph_BeforeOfDraw() { g_cAPI_Interface.beforeOfDrawMtd(); } void cAPIGph_AfterOfDraw() { g_cAPI_Interface.afterOfDrawMtd(); }