starfighter/MB_FYP/script/hud.cs

13 lines
219 B
C#
Raw Normal View History

using Godot;
using System;
public partial class hud : Control
{
public Label Score = new();
public override void _Ready()
{
Score = GetNode<Label>("Score");
Score.Text = "SCORE: 0";
}
}