-
I tried to do |
Beta Was this translation helpful? Give feedback.
Answered by
copygirl
Dec 28, 2022
Replies: 1 comment
-
If you want to forward-declare an entity that's not a component (created with As seen in the fwd_declare_component example: // To forward declare entities created with ECS_ENTITY, ECS_TAG or ECS_PREFAB,
// use ECS_DECLARE.
ECS_DECLARE(Wizard); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hw762
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to forward-declare an entity that's not a component (created with
ECS_COMPONENT
) then you can useECS_DECLARE
.As seen in the fwd_declare_component example: