diff options
| author | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-26 22:59:57 -0300 |
|---|---|---|
| committer | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-26 22:59:57 -0300 |
| commit | 6c7e2ac133986efa57b43df52a5498c6f7efcf75 (patch) | |
| tree | 8404bfd3415a8dfcf7073191cbfdf58cc7c905ed /scripts/actors/EnemyDefinition.cs | |
| parent | a3103718796a472da76838bf6fd72ba5d8409d79 (diff) | |
AI
Diffstat (limited to 'scripts/actors/EnemyDefinition.cs')
| -rw-r--r-- | scripts/actors/EnemyDefinition.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/actors/EnemyDefinition.cs b/scripts/actors/EnemyDefinition.cs new file mode 100644 index 0000000..21d4ca0 --- /dev/null +++ b/scripts/actors/EnemyDefinition.cs @@ -0,0 +1,8 @@ +using Godot; + +[GlobalClass] +public partial class EnemyDefinition : ActorDefinition { + [ExportCategory("AI")] + [Export] + public AIType AI; +}
\ No newline at end of file |
