├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── logo.gif ├── shard.lock ├── shard.yml ├── spec ├── crono_spec.cr └── spec_helper.cr └── src ├── crono.cr └── crono ├── art_supplies.cr ├── color.cr ├── font.cr ├── image.cr ├── keyboard.cr ├── math.cr ├── renderer.cr ├── song.cr ├── sound.cr ├── version.cr └── window.cr /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: crystal 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/README.md -------------------------------------------------------------------------------- /logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/logo.gif -------------------------------------------------------------------------------- /shard.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/shard.lock -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/crono_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/spec/crono_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/crono.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono.cr -------------------------------------------------------------------------------- /src/crono/art_supplies.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/art_supplies.cr -------------------------------------------------------------------------------- /src/crono/color.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/color.cr -------------------------------------------------------------------------------- /src/crono/font.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/font.cr -------------------------------------------------------------------------------- /src/crono/image.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/image.cr -------------------------------------------------------------------------------- /src/crono/keyboard.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/keyboard.cr -------------------------------------------------------------------------------- /src/crono/math.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/math.cr -------------------------------------------------------------------------------- /src/crono/renderer.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/renderer.cr -------------------------------------------------------------------------------- /src/crono/song.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/song.cr -------------------------------------------------------------------------------- /src/crono/sound.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/sound.cr -------------------------------------------------------------------------------- /src/crono/version.cr: -------------------------------------------------------------------------------- 1 | module Crono 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /src/crono/window.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/crono/HEAD/src/crono/window.cr --------------------------------------------------------------------------------