diff options
| author | Sarah B <git@sarahduck.ca> | 2024-01-20 15:28:48 -0800 |
|---|---|---|
| committer | Sarah B <git@sarahduck.ca> | 2024-01-20 15:28:48 -0800 |
| commit | 163a2f1a1076d518b04ee37911bdd40afe8b9b2c (patch) | |
| tree | d28b56d5b0b43da21dab92e61f9967e303b7d063 /Mouse.cs | |
| parent | 31d9168080e52738829b5575c66627e43a8bdc38 (diff) | |
Added finalizers
Diffstat (limited to 'Mouse.cs')
| -rw-r--r-- | Mouse.cs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -48,10 +48,9 @@ abstract class Mouse : Drawable Raylib.DrawTexture(Cursor.Texture, (int)Position.X, (int)Position.Y, Color.WHITE); } - public override void Dispose() + protected override void Unload() { Cursor.Dispose(); allMice.Remove(this); - base.Dispose(); } }
\ No newline at end of file |
