mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 09:18:00 +03:00
9 lines
243 B
C++
9 lines
243 B
C++
#include "framework.h"
|
|
#include "text.h"
|
|
#include "draw.h"
|
|
#include "Renderer11.h"
|
|
|
|
void PrintString(int x, int y, int unk1, char* string, int unk2)
|
|
{
|
|
g_Renderer->PrintString(x, y, string, D3DCOLOR_RGBA(0xFF, 0xFF, 0xFF, 255), 0);
|
|
}
|