add character contorller and damage handling
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
extends RefCounted
|
||||
enum TargetType{
|
||||
PLAYER = 1 << 0, # 1 0001
|
||||
ENEMY = 1 << 1, # 2 0010
|
||||
OBJECT = 1 << 2, # 4 0100
|
||||
}
|
||||
Reference in New Issue
Block a user