From 304097177ce41b188ca80816b0d045a944d1f8f3 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Thu, 3 Aug 2023 23:41:32 -0400 Subject: [PATCH] add namespace to Shader --- Shader.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Shader.cs b/Shader.cs index f0134d2..56c85a3 100644 --- a/Shader.cs +++ b/Shader.cs @@ -1,5 +1,7 @@ using OpenTK.Graphics.OpenGL4; +namespace SemiColinGames; + public class Shader : IDisposable { public int Handle; private bool init = false;