Can you use a module inside another module?

You are just missing an include:

# Characters.jl
module Characters
include("GameObjects.jl") # <-- !!
using .GameObjects
# Export statments
# structs and functions
end
3 Likes