From bc3e8cd7bda7934594a5624a36f2277576f9a2a1 Mon Sep 17 00:00:00 2001 From: ikpil Date: Wed, 2 Aug 2023 00:04:59 +0900 Subject: [PATCH] for intellisense --- src/DotRecast.Recast.Demo/Draw/DebugDraw.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/DotRecast.Recast.Demo/Draw/DebugDraw.cs b/src/DotRecast.Recast.Demo/Draw/DebugDraw.cs index 7378725..2c6f5d3 100644 --- a/src/DotRecast.Recast.Demo/Draw/DebugDraw.cs +++ b/src/DotRecast.Recast.Demo/Draw/DebugDraw.cs @@ -28,8 +28,7 @@ namespace DotRecast.Recast.Demo.Draw; public class DebugDraw { private readonly GLCheckerTexture g_tex; - private readonly IOpenGLDraw openGlDraw; - + private readonly ModernOpenGLDraw openGlDraw; public DebugDraw(GL gl) { @@ -37,7 +36,7 @@ public class DebugDraw openGlDraw = new ModernOpenGLDraw(gl); } - private IOpenGLDraw GetOpenGlDraw() + private ModernOpenGLDraw GetOpenGlDraw() { return openGlDraw; }