diff options
| author | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-16 17:49:02 -0300 |
|---|---|---|
| committer | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-16 17:49:02 -0300 |
| commit | 5c265ada0d1ec531fa97ad132b87c99cb9e81b1a (patch) | |
| tree | a34767dda4887c184492aba0fba2cc3fc0efb211 /scripts/Enemy.cs | |
| parent | e8d1d766f0cb1a4823901bdb70d08879eca2e36f (diff) | |
Remoção de prints
Diffstat (limited to 'scripts/Enemy.cs')
| -rw-r--r-- | scripts/Enemy.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/Enemy.cs b/scripts/Enemy.cs index 52eb27f..473ba0f 100644 --- a/scripts/Enemy.cs +++ b/scripts/Enemy.cs @@ -2,9 +2,7 @@ using Godot; using System; public partial class Enemy : Actor { - public override void performAction() { + public override void PerformAction() { Walk(Vector2I.Right); - - GD.Print("Energy after walking: " + Energy); } } |
