13 lines
219 B
C#
13 lines
219 B
C#
|
|
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";
|
||
|
|
}
|
||
|
|
}
|