We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4981da9 commit c8eb2f8Copy full SHA for c8eb2f8
src/Box2D.NET.Samples/SampleContext.cs
@@ -43,9 +43,9 @@ public class SampleContext
43
44
public B2DebugDraw debugDraw;
45
46
- public ImFontPtr m_regularFont;
47
- public ImFontPtr m_mediumFont;
48
- public ImFontPtr m_largeFont;
+ public ImFontPtr regularFont;
+ public ImFontPtr mediumFont;
+ public ImFontPtr largeFont;
49
50
//
51
public GL gl;
@@ -82,9 +82,9 @@ private SampleContext(string signature, Glfw glfw)
82
83
debugDraw.context = this;
84
85
- m_mediumFont = default;
86
- m_largeFont = default;
87
- m_regularFont = default;
+ mediumFont = default;
+ largeFont = default;
+ regularFont = default;
88
}
89
90
public void Load()
0 commit comments