add character contorller and damage handling

This commit is contained in:
2026-05-20 18:50:52 +01:00
parent 579413d20a
commit bceb6c6df8
12 changed files with 223 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
extends RefCounted
enum TargetType{
PLAYER = 1 << 0, # 1 0001
ENEMY = 1 << 1, # 2 0010
OBJECT = 1 << 2, # 4 0100
}