Skip to content

Commit c8eb2f8

Browse files
committed
font member name
1 parent 4981da9 commit c8eb2f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Box2D.NET.Samples/SampleContext.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ public class SampleContext
4343

4444
public B2DebugDraw debugDraw;
4545

46-
public ImFontPtr m_regularFont;
47-
public ImFontPtr m_mediumFont;
48-
public ImFontPtr m_largeFont;
46+
public ImFontPtr regularFont;
47+
public ImFontPtr mediumFont;
48+
public ImFontPtr largeFont;
4949

5050
//
5151
public GL gl;
@@ -82,9 +82,9 @@ private SampleContext(string signature, Glfw glfw)
8282

8383
debugDraw.context = this;
8484

85-
m_mediumFont = default;
86-
m_largeFont = default;
87-
m_regularFont = default;
85+
mediumFont = default;
86+
largeFont = default;
87+
regularFont = default;
8888
}
8989

9090
public void Load()

0 commit comments

Comments
 (0)