GodotComponentTest/entities/Axe.cs

6 lines
155 B
C#
Raw Normal View History

using Godot;
2023-11-18 22:32:57 +01:00
public class Axe : StaticBody {
// Called when the node enters the scene tree for the first time.
2023-11-18 22:32:57 +01:00
public override void _Ready() { }
}