Skip to content

SDL2-based 2D game engine based on GameZero.jl

Notifications You must be signed in to change notification settings

dustyirwin/GameOne.jl

Repository files navigation

GameOne.jl

GameOne.jl is a WIP non-zero overhead game engine, based on aviks/GameZero.jl.

Known Issues

  • Incomplete text input API

Running Games

Games created using GameOne are .jl files that live in any directory. To play the games, start the Julia REPL and:

julia> using Pkg

julia> Pkg.activate(".")

julia> using GameOne

julia> rungame("examples/example1.jl")

Acknowledgement

The design of this library is inspired by the Julia library aviks/GameZero.jl, which is based on the python package PyGameZero by Daniel Pope.

GameOne uses SDL2 via the Julia wrapper.