diff options
| author | Sarah Bradley <git@sarahduck.ca> | 2023-12-18 19:51:26 -0800 |
|---|---|---|
| committer | Sarah Bradley <git@sarahduck.ca> | 2023-12-18 19:51:26 -0800 |
| commit | 4b7966ffda3b6ad34d355148ddccbe2959061730 (patch) | |
| tree | 8be290357abb5d7cf8c72a803f3be63b3e353d7e /Main.cs | |
| parent | fc3874657348bde6ce7e3fab625c92dfec91baaa (diff) | |
Networked Mice!!
Also combined Spritesheet + Username packets into one UserInfo packet.
Diffstat (limited to 'Main.cs')
| -rw-r--r-- | Main.cs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,7 +28,7 @@ static class OnekoOnline Raylib.HideCursor(); OnekoLocal LocalOneko = new(); - Mouse LocalMouse = new(); + MouseLocal LocalMouse = new(); RenderTexture2D RenderTexture = Raylib.LoadRenderTexture(WindowX, WindowY); @@ -53,8 +53,8 @@ static class OnekoOnline Raylib.BeginTextureMode(RenderTexture); Raylib.ClearBackground(Color.GRAY); - Raylib.DrawTextEx(DefaultFont, "こんにちは", new(32,32), 11, 0, Color.WHITE); - Raylib.DrawText("Oneko Online", 12, 12, 8, Color.WHITE); + Raylib.DrawTextEx(DefaultFont, "こんにちは", new(17,18), 11, 0, Color.WHITE); + Raylib.DrawText("Oneko Online", 10, 9, 8, Color.WHITE); Drawable.DrawAll(); |
