diff options
| author | Sarah Bradley <git@sarahduck.ca> | 2023-12-16 21:15:14 -0800 |
|---|---|---|
| committer | Sarah Bradley <git@sarahduck.ca> | 2023-12-16 21:15:14 -0800 |
| commit | 217c93639fc6dee3222e0a3724dd5ed67b34f412 (patch) | |
| tree | 8a1373b2bf41e329b78d888aabea59745546aab8 /Drawable.cs | |
| parent | dbba03fe210a80f7d89d3ad021ec901a9196a537 (diff) | |
Network Oneko position!
Diffstat (limited to 'Drawable.cs')
| -rw-r--r-- | Drawable.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Drawable.cs b/Drawable.cs index f6e5e1b..0f89de9 100644 --- a/Drawable.cs +++ b/Drawable.cs @@ -19,7 +19,7 @@ abstract class Drawable : IDisposable public static void DrawAll() { float delta = Raylib.GetFrameTime(); - foreach (Drawable drawable in Drawables.OrderBy(d => -d.Position.Y)) { + foreach (Drawable drawable in Drawables.OrderBy(d => d.Position.Y)) { drawable?.Update(delta); drawable?.Draw(); } |
