I have a file structure like this
code - Folder
-- GameObjects.jl
-- Characters.jl
I want to use GameObjects
inside Characters.jl
but I get GameObjects
not defined when I do:
# Characters.jl
module Characters
using .GameObjects
# Export statments
# structs and functions
end
I’m assuming that .GameObjects
would behave like a sub module as specified in the documentation?