using Godot; using System; public class Player : RigidBody2D { private const float jumpForce = -225f; private bool alive = true; private int score = 0; private Label labelScore; private ulong timeDied = 0; private const int respawnTime = 3; private Sprite spriteGameOver; public override void _Ready() { labelScore = GetNode