summaryrefslogtreecommitdiff
path: root/Net.cs
diff options
context:
space:
mode:
authorSarah B <git@sarahduck.ca>2023-12-25 00:02:12 -0800
committerSarah B <git@sarahduck.ca>2023-12-25 00:02:12 -0800
commitff3cbc5b49f8618531c5778d69b49c0aa4a9442a (patch)
treebdee837392669a3eb4ac3f0296c3749c6485078c /Net.cs
parent760fb20f4d248d19524392d2b8c3a3fcdb762453 (diff)
Changed how server handles UserInfo, and started work on networking the cursor's sprite.
Diffstat (limited to 'Net.cs')
-rw-r--r--Net.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/Net.cs b/Net.cs
index 8384482..8ade4e8 100644
--- a/Net.cs
+++ b/Net.cs
@@ -88,13 +88,8 @@ public struct PacketInfo(PacketType type, int id)
}
}
-class User(int id)
+abstract class User(int id)
{
public readonly int Id = id;
public bool Initialized = false;
-
- //Oneko Stuff
- public byte[]? SpriteSheet;
- public string? Username;
- public string? Nekoname;
} \ No newline at end of file