From 933664de8d2aa73ca0b0248236c591685f5d1e3c Mon Sep 17 00:00:00 2001 From: jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Sun, 15 Jan 2023 22:10:33 +0300 Subject: [PATCH] fix --- DevourClient/Helpers/GUIHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevourClient/Helpers/GUIHelper.cs b/DevourClient/Helpers/GUIHelper.cs index 097c07e..099c801 100644 --- a/DevourClient/Helpers/GUIHelper.cs +++ b/DevourClient/Helpers/GUIHelper.cs @@ -34,7 +34,7 @@ namespace DevourClient.Helpers return color; } - private Texture2D MakeTex(int width, int height, Color col) + public static Texture2D MakeTex(int width, int height, Color col) { Color[] pix = new Color[width * height]; for (int i = 0; i < pix.Length; ++i)