at main 202 B view raw
1using Raylib_cs; 2 3namespace Electropunk.Graphics; 4 5public static class TextureUtil 6{ 7 public static Rectangle GetSourceRect(Texture2D texture) 8 { 9 return new(0, 0, texture.Width, texture.Height); 10 } 11}