summaryrefslogtreecommitdiff
path: root/Main.cs
diff options
context:
space:
mode:
authorSarah Bradley <git@sarahduck.ca>2023-12-18 19:51:26 -0800
committerSarah Bradley <git@sarahduck.ca>2023-12-18 19:51:26 -0800
commit4b7966ffda3b6ad34d355148ddccbe2959061730 (patch)
tree8be290357abb5d7cf8c72a803f3be63b3e353d7e /Main.cs
parentfc3874657348bde6ce7e3fab625c92dfec91baaa (diff)
Networked Mice!!
Also combined Spritesheet + Username packets into one UserInfo packet.
Diffstat (limited to 'Main.cs')
-rw-r--r--Main.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Main.cs b/Main.cs
index 0194169..79db391 100644
--- a/Main.cs
+++ b/Main.cs
@@ -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();