You are just missing an include:
# Characters.jl
module Characters
include("GameObjects.jl") # <-- !!
using .GameObjects
# Export statments
# structs and functions
end
You are just missing an include:
# Characters.jl
module Characters
include("GameObjects.jl") # <-- !!
using .GameObjects
# Export statments
# structs and functions
end