Exemplo n.º 1
0
 public static void DrawRect(float x, float y, float width, float height, int r, int g, int b, int a, bool unk)
 {
     using var tls = UsingTls.Scope();
     Invoke(Memory.Native_DrawRect, x, y, width, height, r, g, b, a, unk);
 }
Exemplo n.º 2
0
 public static void DrawSprite(string textureDict, string textureName, float x, float y, float width, float height, float rotation, int r, int g, int b, int a, bool unk)
 {
     using var tls = UsingTls.Scope();
     Invoke(Memory.Native_DrawSprite, textureDict, textureName, x, y, width, height, rotation, r, g, b, a, unk);
 }