gitextract_oovdsi4y/ ├── LICENSE ├── README.md ├── STYLE.md ├── demos/ │ ├── README.md │ ├── assets/ │ │ ├── csv/ │ │ │ ├── atlas.csv │ │ │ ├── map0.csv │ │ │ └── map_camera_test.csv │ │ └── mus/ │ │ ├── absolu.mod │ │ ├── biotech.xm │ │ ├── cancan.mod │ │ └── cornered!.xm │ ├── demo1/ │ │ ├── README.md │ │ ├── demo1.nim │ │ ├── mainscene.nim │ │ └── spaceman.nim │ ├── demo10/ │ │ ├── README.md │ │ ├── demo10.nim │ │ ├── earth.nim │ │ ├── mainscene.nim │ │ └── spaceman.nim │ ├── demo11/ │ │ ├── README.md │ │ ├── demo11.nim │ │ ├── earth.nim │ │ └── mainscene.nim │ ├── demo12/ │ │ ├── README.md │ │ ├── demo12.nim │ │ └── mainscene.nim │ ├── demo13/ │ │ ├── README.md │ │ ├── cursor.nim │ │ ├── demo13.nim │ │ └── mainscene.nim │ ├── demo14/ │ │ ├── README.md │ │ ├── demo14.nim │ │ ├── dwarf.nim │ │ └── mainscene.nim │ ├── demo15/ │ │ ├── README.md │ │ ├── demo15.nim │ │ └── mainscene.nim │ ├── demo16/ │ │ ├── README.md │ │ ├── demo16.nim │ │ └── mainscene.nim │ ├── demo17/ │ │ ├── README.md │ │ ├── btnCircle.nim │ │ ├── btnSquare.nim │ │ ├── demo17.nim │ │ └── mainscene.nim │ ├── demo18/ │ │ ├── README.md │ │ ├── demo18.nim │ │ └── mainscene.nim │ ├── demo19/ │ │ ├── README.md │ │ ├── demo19.nim │ │ └── mainscene.nim │ ├── demo2/ │ │ ├── README.md │ │ ├── demo2.nim │ │ ├── earth.nim │ │ ├── mainscene.nim │ │ └── spaceman.nim │ ├── demo20/ │ │ ├── README.md │ │ ├── demo20.nim │ │ └── mainscene.nim │ ├── demo21/ │ │ ├── README.md │ │ ├── demo21.nim │ │ ├── joypoint.nim │ │ └── mainscene.nim │ ├── demo22/ │ │ ├── README.md │ │ ├── demo22.nim │ │ ├── mainscene.nim │ │ └── video.mpg │ ├── demo23/ │ │ ├── README.md │ │ ├── demo23.nim │ │ ├── mainscene.nim │ │ └── private/ │ │ ├── border_fill_graphic.nim │ │ ├── circle_graphic.nim │ │ └── frame.nim │ ├── demo3/ │ │ ├── README.md │ │ ├── demo3.nim │ │ ├── mainscene.nim │ │ └── spaceman.nim │ ├── demo4/ │ │ ├── README.md │ │ ├── demo4.nim │ │ ├── dwarf.nim │ │ └── mainscene.nim │ ├── demo5/ │ │ ├── README.md │ │ ├── cursor.nim │ │ ├── demo5.nim │ │ ├── earth.nim │ │ ├── line.nim │ │ ├── mainscene.nim │ │ ├── poly1.nim │ │ ├── poly2.nim │ │ ├── poly3.nim │ │ ├── poly9.nim │ │ └── spaceman.nim │ ├── demo6/ │ │ ├── README.md │ │ ├── demo6.nim │ │ ├── earth.nim │ │ ├── mainscene.nim │ │ └── spaceman.nim │ ├── demo7/ │ │ ├── README.md │ │ ├── demo7.nim │ │ ├── earth.nim │ │ └── mainscene.nim │ ├── demo8/ │ │ ├── README.md │ │ ├── demo8.nim │ │ └── mainscene.nim │ ├── demo9/ │ │ ├── README.md │ │ ├── demo9.nim │ │ └── mainscene.nim │ └── nim.cfg ├── docs/ │ ├── changelog.html │ ├── demos.html │ ├── docs/ │ │ ├── assets.html │ │ ├── audio.html │ │ ├── bitmapfont.html │ │ ├── count.html │ │ ├── draw.html │ │ ├── emitter.html │ │ ├── entity.html │ │ ├── font.html │ │ ├── graphic.html │ │ ├── gui/ │ │ │ ├── button.html │ │ │ ├── progressbar.html │ │ │ ├── radio.html │ │ │ ├── textinput.html │ │ │ └── widget.html │ │ ├── indexedimage.html │ │ ├── input.html │ │ ├── mosaic.html │ │ ├── nimgame.html │ │ ├── perspectiveimage.html │ │ ├── plugin/ │ │ │ ├── mpeggraphic.html │ │ │ ├── tar.html │ │ │ └── zzip.html │ │ ├── private/ │ │ │ └── collider.html │ │ ├── procgraphic.html │ │ ├── scene.html │ │ ├── settings.html │ │ ├── textfield.html │ │ ├── textgraphic.html │ │ ├── textureatlas.html │ │ ├── texturegraphic.html │ │ ├── tilemap.html │ │ ├── truetypefont.html │ │ ├── tween.html │ │ ├── types.html │ │ ├── typewriter.html │ │ └── utils.html │ ├── docs.html │ ├── index.html │ ├── links.html │ ├── snippets.html │ ├── structure.js │ ├── style.css │ ├── template.html │ ├── template_tutorial.html │ ├── tut101_bounce.html │ ├── tut102_platformer.html │ └── tutorials.html ├── nimgame2/ │ ├── assets.nim │ ├── audio.nim │ ├── bitmapfont.nim │ ├── draw.nim │ ├── emitter.nim │ ├── entity.nim │ ├── font.nim │ ├── graphic.nim │ ├── gui/ │ │ ├── button.nim │ │ ├── progressbar.nim │ │ ├── radio.nim │ │ ├── textinput.nim │ │ └── widget.nim │ ├── indexedimage.nim │ ├── input.nim │ ├── mosaic.nim │ ├── nimgame.nim │ ├── perspectiveimage.nim │ ├── plugin/ │ │ ├── mpeggraphic.nim │ │ ├── tar.nim │ │ └── zzip.nim │ ├── private/ │ │ └── collider.nim │ ├── procgraphic.nim │ ├── scene.nim │ ├── settings.nim │ ├── textfield.nim │ ├── textgraphic.nim │ ├── textureatlas.nim │ ├── texturegraphic.nim │ ├── tilemap.nim │ ├── truetypefont.nim │ ├── tween.nim │ ├── types.nim │ ├── typewriter.nim │ └── utils.nim ├── nimgame2.nim └── nimgame2.nimble