1 2 3 4 5 6 7 8
using Godot; using System; public partial class Enemy : Actor { public override void PerformAction() { Walk(Vector2I.Right); } }