diff options
Diffstat (limited to 'scripts/warlock_animation_handler.gd')
-rw-r--r-- | scripts/warlock_animation_handler.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/warlock_animation_handler.gd b/scripts/warlock_animation_handler.gd new file mode 100644 index 0000000..f7ac9c3 --- /dev/null +++ b/scripts/warlock_animation_handler.gd @@ -0,0 +1,6 @@ +extends "res://scripts/base_animation_handler.gd" + +func _ready(): + idle = Rect2(496, 16, 16, 16) + attack = Rect2(496, 32, 16, 16) + update_texture() |