no message

This commit is contained in:
2025-06-11 17:54:55 +02:00
parent 4105e75357
commit 69a456db88
38 changed files with 2398 additions and 159 deletions

View File

@ -0,0 +1,19 @@
extends Node
class_name State
@export var player: CharacterBody2D # HIER hinzugefügt
signal Transitioned
func enter():
pass
func exit():
pass
func update(_delta: float):
pass
func physics_update(_delta: float):
pass