Files

23 lines
576 B
C++
Raw Permalink Normal View History

/**
* c_API_graphic.cpp
*
*/
2021-01-31 15:33:34 -05:00
2021-03-29 00:10:25 +02:00
#include "SSystem/SComponent/c_API_graphic.h"
2021-04-01 00:15:05 +02:00
#include "SSystem/SComponent/c_API.h"
2021-03-28 22:49:05 +02:00
2021-03-29 00:10:25 +02:00
/* 802632C8-802632F8 0030+00 s=0 e=1 z=0 None .text cAPIGph_Painter__Fv */
void cAPIGph_Painter() {
g_cAPI_Interface.painterMtd();
2021-01-07 02:04:53 +01:00
}
2021-03-29 00:10:25 +02:00
/* 802632F8-80263328 0030+00 s=0 e=1 z=0 None .text cAPIGph_BeforeOfDraw__Fv */
void cAPIGph_BeforeOfDraw() {
g_cAPI_Interface.beforeOfDrawMtd();
2021-01-07 02:04:53 +01:00
}
2021-03-28 22:49:05 +02:00
2021-03-29 00:10:25 +02:00
/* 80263328-80263358 0030+00 s=0 e=1 z=0 None .text cAPIGph_AfterOfDraw__Fv */
void cAPIGph_AfterOfDraw() {
g_cAPI_Interface.afterOfDrawMtd();
2021-03-28 22:49:05 +02:00
}