for intellisense

This commit is contained in:
ikpil 2023-08-02 00:04:59 +09:00
parent e3cad83e55
commit bc3e8cd7bd
1 changed files with 2 additions and 3 deletions

View File

@ -28,8 +28,7 @@ namespace DotRecast.Recast.Demo.Draw;
public class DebugDraw public class DebugDraw
{ {
private readonly GLCheckerTexture g_tex; private readonly GLCheckerTexture g_tex;
private readonly IOpenGLDraw openGlDraw; private readonly ModernOpenGLDraw openGlDraw;
public DebugDraw(GL gl) public DebugDraw(GL gl)
{ {
@ -37,7 +36,7 @@ public class DebugDraw
openGlDraw = new ModernOpenGLDraw(gl); openGlDraw = new ModernOpenGLDraw(gl);
} }
private IOpenGLDraw GetOpenGlDraw() private ModernOpenGLDraw GetOpenGlDraw()
{ {
return openGlDraw; return openGlDraw;
} }