Files
MovementTests/scenes/enemies/EnemyInitInputs.cs
2026-01-17 11:02:17 +01:00

19 lines
313 B
C#

using Godot;
using System;
[GlobalClass]
public partial class EnemyInitInputs : Resource
{
[Export(PropertyHint.Range, "0,10,0.1,or_greater")]
public float Speed;
public EnemyInitInputs()
{
Speed = 5.0f;
}
public EnemyInitInputs(float speed)
{
Speed = speed;
}
}