Skip to content

Commit

Permalink
Moved MAIN export for package compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyjor committed Aug 16, 2024
1 parent df0703d commit b4c4694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/JulGame.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ module JulGame
include("CommonFunctions.jl")
using SimpleDirectMediaLayer
const SDL2 = SimpleDirectMediaLayer
MAIN = nothing

include("ModuleExtensions/SDL2Extension.jl")
const SDL2E = SDL2Extension
export SDL2, SDL2E
export SDL2, SDL2E, MAIN

include("Utils.jl")
export CallSDLFunction
Expand Down Expand Up @@ -58,6 +59,5 @@ module JulGame

include("Main.jl")
using .MainLoop: Main
MAIN::Union{Main, Nothing} = nothing
export Main, MAIN
export Main
end

0 comments on commit b4c4694

Please sign in to comment.