feat: define authoritative action effects
This commit is contained in:
@@ -4,5 +4,9 @@ extends RefCounted
|
||||
|
||||
# Offers are advisory presentation values. Implementations must not mutate
|
||||
# authoritative state while answering this query.
|
||||
func get_action_offers(_actor_id: StringName, _target: WorldTargetHandle) -> Array[ActionOffer]:
|
||||
func get_offers(_actor: WorldEntityRef, _target: WorldTargetHandle) -> Array[ActionOffer]:
|
||||
return []
|
||||
|
||||
|
||||
func get_action_offers(actor_id: StringName, target: WorldTargetHandle) -> Array[ActionOffer]:
|
||||
return get_offers(WorldEntityRef.create(SimulationIds.ENTITY_PERSON, actor_id), target)
|
||||
|
||||
Reference in New Issue
Block a user