From c7ec9e3ad7cf40f0880948da6e2626ee45a487b9 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Fri, 24 Jan 2020 20:04:43 -0500 Subject: [PATCH] start Player on ground GitOrigin-RevId: e781328586e453e0e8c080b7ccb5026de3348064 --- Shared/Player.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Player.cs b/Shared/Player.cs index 840e8ef..b76e813 100644 --- a/Shared/Player.cs +++ b/Shared/Player.cs @@ -15,7 +15,7 @@ namespace SemiColinGames { private const int spriteSize = 48; private const int spriteWidth = 7; - private Point position = new Point(64, 16); + private Point position = new Point(64, 16 * 14); private int jumps = 0; private Facing facing = Facing.Right; private Pose pose = Pose.Jumping;