├── .gitignore ├── README.TXT ├── VERSIONS.TXT ├── bananas ├── Richard_Betson │ ├── TileImage │ │ ├── TileImage.data │ │ │ └── bg.png │ │ └── TileImage.monkey │ ├── glfw_diffusion │ │ └── glfw_diffusion_example.monkey │ ├── line_v_circle_collision │ │ ├── line_v_circle_collision.data │ │ │ └── circle2f.png │ │ └── line_v_circle_collision.monkey │ ├── mirror_fx_transform │ │ ├── mirror_fx_transform.data │ │ │ └── c.png │ │ └── mirror_fx_transform.monkey │ └── simple_verlet_physics │ │ └── simple_verlet_physics.monkey ├── beaker │ └── angelfont_example │ │ ├── angelfont.monkey │ │ ├── angelfont_example.data │ │ ├── angel3.fnt │ │ ├── angel3.png │ │ ├── angel3.txt │ │ ├── angel_verdana.fnt │ │ ├── angel_verdana.png │ │ ├── angel_verdana.txt │ │ ├── angel_verdana_0.png │ │ ├── pagedfont.fnt │ │ ├── pagedfont_0.png │ │ ├── pagedfont_1.png │ │ ├── simpletextboxhtml.txt │ │ └── simpletextboxtext.txt │ │ ├── angelfont_example.monkey │ │ ├── char.monkey │ │ ├── config.monkey │ │ ├── kernpair.monkey │ │ ├── simpleinput.monkey │ │ └── simpletextbox.monkey ├── charlie │ └── blobmonster │ │ ├── blobmonster.data │ │ └── blob.png │ │ └── blobmonster.monkey ├── devolonter │ └── matchup │ │ ├── fontmachine │ │ ├── bitmapchar.monkey │ │ ├── bitmapcharmetrics.monkey │ │ ├── bitmapfont.monkey │ │ ├── drawingpoint.monkey │ │ ├── drawingrectangle.monkey │ │ ├── edrawalign.monkey │ │ ├── edrawmode.monkey │ │ ├── fontinterface.monkey │ │ └── fontmachine.monkey │ │ ├── matchup.data │ │ ├── fonts │ │ │ ├── main.fmp │ │ │ ├── main.txt │ │ │ ├── main_P_1.png │ │ │ └── main_P_2.png │ │ └── images │ │ │ ├── bg.png │ │ │ └── cards │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── bg.png │ │ ├── matchup.monkey │ │ └── src │ │ ├── card.monkey │ │ ├── game.monkey │ │ ├── gamefield.monkey │ │ ├── helpers.monkey │ │ ├── progressbar.monkey │ │ ├── timer.monkey │ │ └── tweening.monkey ├── difference │ ├── champagne │ │ └── champagne.monkey │ └── clock │ │ └── clock.monkey ├── ferdi │ ├── breakout │ │ └── breakout.monkey │ └── snake │ │ └── snake.monkey ├── gerryq │ └── picpuzzle │ │ ├── picpuzzle.data │ │ ├── pic000.jpg │ │ ├── pic001.jpg │ │ ├── pic002.jpg │ │ └── rightbar.png │ │ └── picpuzzle.monkey ├── hitoro │ ├── autofit │ │ ├── autofit.monkey │ │ ├── autofitdemo.monkey │ │ ├── info.txt │ │ └── simpledemo.monkey │ ├── basicgame │ │ ├── basicgame.data │ │ │ └── player.png │ │ └── basicgame.monkey │ ├── delta │ │ ├── delta timing.txt │ │ └── delta.monkey │ ├── gamestates_demo │ │ ├── gamestates_demo.data │ │ │ ├── menu.png │ │ │ └── player.png │ │ └── gamestates_demo.monkey │ ├── jump_rotate │ │ ├── jump_rotate.data │ │ │ ├── block.png │ │ │ └── player.png │ │ └── jump_rotate.monkey │ ├── matrixrocks │ │ ├── explained.txt │ │ ├── matrixrocks.data │ │ │ └── default_player.png │ │ └── matrixrocks.monkey │ ├── rockout │ │ ├── imports │ │ │ ├── autofit.monkey │ │ │ ├── block.monkey │ │ │ ├── button.monkey │ │ │ ├── checkkeys.monkey │ │ │ ├── collisions.monkey │ │ │ ├── constants.monkey │ │ │ ├── defaultmedia.monkey │ │ │ ├── delta.monkey │ │ │ ├── functions.monkey │ │ │ ├── game.monkey │ │ │ ├── globals.monkey │ │ │ ├── level.monkey │ │ │ ├── media.monkey │ │ │ ├── rendergame.monkey │ │ │ ├── rocket.monkey │ │ │ ├── scorebubble.monkey │ │ │ ├── session.monkey │ │ │ ├── shot.monkey │ │ │ ├── sprite.monkey │ │ │ ├── timer.monkey │ │ │ ├── updategame.monkey │ │ │ └── virtual.monkey │ │ ├── rockout.data │ │ │ ├── defaultgfx │ │ │ │ ├── blue.png │ │ │ │ ├── default_player.png │ │ │ │ └── default_shot.png │ │ │ ├── level1.txt │ │ │ ├── level10.txt │ │ │ ├── level2.txt │ │ │ ├── level3.txt │ │ │ ├── level4.txt │ │ │ ├── level5.txt │ │ │ ├── level6.txt │ │ │ ├── level7.txt │ │ │ ├── level8.txt │ │ │ ├── level9.txt │ │ │ ├── levels.bb │ │ │ └── levels │ │ │ │ └── default │ │ │ │ └── level1.txt │ │ └── rockout.monkey │ └── rotationsickness │ │ ├── rotationsickness.data │ │ ├── block.png │ │ └── player.png │ │ └── rotationsickness.monkey ├── impixi │ └── life │ │ └── life.monkey ├── mak │ ├── acceltest │ │ └── acceltest.monkey │ ├── admobtest │ │ └── admobtest.monkey │ ├── audiotest │ │ ├── audiotest.data │ │ │ ├── happy.m4a │ │ │ ├── happy.mp3 │ │ │ ├── happy.ogg │ │ │ ├── happy.wav │ │ │ ├── happy.wma │ │ │ ├── shoot.m4a │ │ │ ├── shoot.mp3 │ │ │ ├── shoot.ogg │ │ │ ├── shoot.wav │ │ │ ├── shoot.wma │ │ │ ├── tinkle.m4a │ │ │ ├── tinkle.mp3 │ │ │ ├── tinkle.ogg │ │ │ ├── tinkle.wav │ │ │ └── tinkle.wma │ │ └── audiotest.monkey │ ├── bbgametest │ │ └── bbgametest.monkey │ ├── bouncyaliens │ │ ├── bouncyaliens.data │ │ │ ├── alien1.png │ │ │ └── alien2.png │ │ └── bouncyaliens.monkey │ ├── dynamicimage │ │ └── dynamicimage.monkey │ ├── echoserver_tcp │ │ └── echoserver_tcp.monkey │ ├── echoserver_udp │ │ └── echoserver_udp.monkey │ ├── exceptions │ │ └── exceptions.monkey │ ├── fileiotest │ │ ├── fileiotest.data │ │ │ └── test.dat │ │ └── fileiotest.monkey │ ├── filetest │ │ └── filetest.monkey │ ├── firepaint │ │ ├── firepaint.data │ │ │ └── bluspark.png │ │ └── firepaint.monkey │ ├── fpstest │ │ └── fpstest.monkey │ ├── gles20cube │ │ ├── geom.monkey │ │ ├── gles20cube.data │ │ │ ├── cube.txt │ │ │ ├── fshader.txt │ │ │ ├── mandril.jpg │ │ │ └── vshader.txt │ │ ├── gles20cube.monkey │ │ ├── mat4.monkey │ │ └── vec3.monkey │ ├── httprequest │ │ └── httprequest.monkey │ ├── iaptest │ │ └── iaptest.monkey │ ├── ifacetest │ │ ├── ifacetest │ │ ├── ifacetest.monkey │ │ └── ifacetest2.monkey │ ├── joytest │ │ └── joytest.monkey │ ├── jsonstream │ │ └── jsonstream.monkey │ ├── keyboardtest │ │ └── keyboardtest.monkey │ ├── mojotest │ │ ├── mojotest.data │ │ │ └── images │ │ │ │ └── RedbrushAlpha.png │ │ └── mojotest.monkey │ ├── opengltest │ │ ├── opengltest.data │ │ │ └── Grass_1.png │ │ └── opengltest.monkey │ ├── reflectiontest │ │ └── reflectiontest.monkey │ ├── smoothscroll │ │ ├── smoothscroll.bmx │ │ └── smoothscroll.monkey │ ├── suspendtest │ │ ├── suspendtest.data │ │ │ ├── Kalimba.ogg │ │ │ ├── tinkle.mp3 │ │ │ ├── tinkle.ogg │ │ │ └── tinkle.wav │ │ └── suspendtest.monkey │ └── unicodetest │ │ ├── unicodetest.data │ │ ├── ascii.txt │ │ ├── str0.txt │ │ ├── str0_utf16be.txt │ │ ├── str0_utf16le.txt │ │ └── str0_utf8.txt │ │ └── unicodetest.monkey ├── origaming │ ├── DegreeAndRadian │ │ ├── DegreeAndRadian.data │ │ │ └── DegreeAndRadian.png │ │ └── DegreeAndRadian.monkey │ ├── FollowMouse │ │ ├── FollowMouse.data │ │ │ └── FollowMouse.png │ │ └── FollowMouse.monkey │ ├── MacOsMenu │ │ ├── MacOsMenu.data │ │ │ └── MacOsMenu.png │ │ └── MacOsMenu.monkey │ ├── README.txt │ └── RotatingObjects │ │ ├── rotatingObjects.data │ │ ├── bullet.png │ │ └── rotatingObjects.png │ │ └── rotatingObjects.monkey ├── skn3 │ ├── config │ │ ├── config.monkey │ │ └── configdemo.monkey │ ├── gamepad │ │ └── gamepad.monkey │ ├── iconfun │ │ ├── iconfun.data │ │ │ ├── font_black.png │ │ │ ├── font_white.png │ │ │ └── loading.png │ │ ├── iconfun.monkey │ │ └── index.php │ ├── monkenstein │ │ ├── monkenstein.data │ │ │ └── textures.png │ │ └── monkenstein.monkey │ ├── spiralmatrix │ │ └── spiralmatrix.monkey │ ├── texteffect │ │ ├── texteffect.data │ │ │ └── font.png │ │ └── texteffect.monkey │ └── tweening │ │ ├── tween.monkey │ │ └── tweendemo.monkey └── warpy │ ├── bezier │ └── bezier.monkey │ ├── hilbert │ └── hilbert.monkey │ ├── horsey │ ├── horsey.data │ │ ├── bg.mp3 │ │ ├── bg.png │ │ ├── clop1.mp3 │ │ ├── clop2.mp3 │ │ ├── clop3.mp3 │ │ ├── fg.png │ │ ├── horse.png │ │ └── neigh.mp3 │ └── horsey.monkey │ ├── json │ └── json.monkey │ ├── monkeypuzzle │ ├── monkeypuzzle.data │ │ └── monkey.png │ └── monkeypuzzle.monkey │ ├── pegs │ └── pegs.monkey │ └── transform │ ├── transform.monkey │ └── transform_mouse.monkey ├── bin ├── config.linux.txt ├── config.macos.txt ├── config.winnt.txt └── docstyle.txt ├── docs ├── monkeydoc │ ├── API Reference.monkeydoc │ ├── Credits.monkeydoc │ ├── Home.monkeydoc │ ├── Links.monkeydoc │ ├── Mojo2 samples.monkeydoc │ ├── Programming │ │ ├── App config settings.monkeydoc │ │ ├── File formats.monkeydoc │ │ ├── Key codes.monkeydoc │ │ ├── Keywords.monkeydoc │ │ ├── Keywords │ │ │ ├── Abstract.monkeydoc │ │ │ ├── And.monkeydoc │ │ │ ├── Bool.monkeydoc │ │ │ ├── Case.monkeydoc │ │ │ ├── Catch.monkeydoc │ │ │ ├── Class.monkeydoc │ │ │ ├── Const.monkeydoc │ │ │ ├── Continue.monkeydoc │ │ │ ├── Default.monkeydoc │ │ │ ├── Eachin.monkeydoc │ │ │ ├── Else.monkeydoc │ │ │ ├── Elseif.monkeydoc │ │ │ ├── End.monkeydoc │ │ │ ├── Endif.monkeydoc │ │ │ ├── Exit.monkeydoc │ │ │ ├── Extends.monkeydoc │ │ │ ├── Extern.monkeydoc │ │ │ ├── False.monkeydoc │ │ │ ├── Field.monkeydoc │ │ │ ├── Final.monkeydoc │ │ │ ├── Float.monkeydoc │ │ │ ├── For.monkeydoc │ │ │ ├── Forever.monkeydoc │ │ │ ├── Function.monkeydoc │ │ │ ├── Global.monkeydoc │ │ │ ├── If.monkeydoc │ │ │ ├── Implements.monkeydoc │ │ │ ├── Import.monkeydoc │ │ │ ├── Int.monkeydoc │ │ │ ├── Interface.monkeydoc │ │ │ ├── Local.monkeydoc │ │ │ ├── Method.monkeydoc │ │ │ ├── Mod.monkeydoc │ │ │ ├── New.monkeydoc │ │ │ ├── Next.monkeydoc │ │ │ ├── Not.monkeydoc │ │ │ ├── Null.monkeydoc │ │ │ ├── Or.monkeydoc │ │ │ ├── Private.monkeydoc │ │ │ ├── Property.monkeydoc │ │ │ ├── Public.monkeydoc │ │ │ ├── Repeat.monkeydoc │ │ │ ├── Return.monkeydoc │ │ │ ├── Select.monkeydoc │ │ │ ├── Self.monkeydoc │ │ │ ├── Shl.monkeydoc │ │ │ ├── Shr.monkeydoc │ │ │ ├── Step.monkeydoc │ │ │ ├── Strict.monkeydoc │ │ │ ├── Super.monkeydoc │ │ │ ├── Then.monkeydoc │ │ │ ├── Throw.monkeydoc │ │ │ ├── To.monkeydoc │ │ │ ├── True.monkeydoc │ │ │ ├── Try.monkeydoc │ │ │ ├── Until.monkeydoc │ │ │ ├── Void.monkeydoc │ │ │ ├── Wend.monkeydoc │ │ │ └── While.monkeydoc │ │ ├── Language reference.monkeydoc │ │ └── Resource paths.monkeydoc │ ├── Samples.monkeydoc │ ├── Target SDKs.monkeydoc │ ├── Target SDKs │ │ ├── The Android target.monkeydoc │ │ ├── The Desktop target.monkeydoc │ │ ├── The Flash target.monkeydoc │ │ ├── The HTML5 target.monkeydoc │ │ ├── The PSM target.monkeydoc │ │ ├── The Stdcpp target.monkeydoc │ │ ├── The WinRT target.monkeydoc │ │ ├── The XNA target.monkeydoc │ │ └── The iOS target.monkeydoc │ ├── Tools │ │ ├── MServer.monkeydoc │ │ ├── Makedocs.monkeydoc │ │ ├── Monkey.monkeydoc │ │ ├── Ted.monkeydoc │ │ └── Trans.monkeydoc │ └── Tutorials │ │ ├── Drawing with images.monkeydoc │ │ ├── First monkey steps.data │ │ └── spiral │ │ │ └── spiral.monkey │ │ ├── First monkey steps.monkeydoc │ │ └── Getting started.monkeydoc └── templates │ ├── blitzmunter │ ├── data │ │ └── monkey32.png │ ├── index_template.html │ ├── page_template.html │ ├── pagestyle.css │ └── scope_template.html │ └── devolonter │ ├── data │ └── monkey.png │ ├── index_template.html │ ├── page_template.html │ ├── page_template_with_footer.html │ ├── pagestyle.css │ └── scope_template.html ├── modules ├── brl │ ├── README.TXT │ ├── admob.monkey │ ├── asyncevent.monkey │ ├── brl.monkey │ ├── databuffer.monkey │ ├── datastream.monkey │ ├── filepath.monkey │ ├── filestream.monkey │ ├── filesystem.monkey │ ├── gamecenter.monkey │ ├── gametarget.monkey │ ├── httprequest.monkey │ ├── json.monkey │ ├── markdown.monkey │ ├── monkeydoc │ │ ├── admob.monkeydoc │ │ ├── asyncevent.monkeydoc │ │ ├── brl.monkeydoc │ │ ├── databuffer.monkeydoc │ │ ├── datastream.monkeydoc │ │ ├── filepath.monkeydoc │ │ ├── filestream.monkeydoc │ │ ├── filesystem.monkeydoc │ │ ├── gamecenter.monkeydoc │ │ ├── httprequest.monkeydoc │ │ ├── json.monkeydoc │ │ ├── markdown.monkeydoc │ │ ├── monkeystore.monkeydoc │ │ ├── pool.monkeydoc │ │ ├── process.monkeydoc │ │ ├── requesters.monkeydoc │ │ ├── ringbuffer.monkeydoc │ │ ├── socket.monkeydoc │ │ ├── stream.monkeydoc │ │ ├── tcpstream.monkeydoc │ │ └── url.monkeydoc │ ├── monkeystore.monkey │ ├── native │ │ ├── admob.android.java │ │ ├── admob.ios.cpp │ │ ├── admob_googleplay.android.java │ │ ├── android_iab │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── vending │ │ │ │ └── billing │ │ │ │ └── IInAppBillingService.aidl │ │ ├── databuffer.as │ │ ├── databuffer.cpp │ │ ├── databuffer.cs │ │ ├── databuffer.java │ │ ├── databuffer.js │ │ ├── filestream.cpp │ │ ├── filestream.cs │ │ ├── filestream.java │ │ ├── filesystem.cpp │ │ ├── filesystem.java │ │ ├── gamecenter.ios.cpp │ │ ├── gametarget.as │ │ ├── gametarget.cpp │ │ ├── gametarget.cs │ │ ├── gametarget.java │ │ ├── gametarget.js │ │ ├── httprequest.android.java │ │ ├── httprequest.flash.as │ │ ├── httprequest.html5.js │ │ ├── httprequest.ios.cpp │ │ ├── httprequest.winrt.cpp │ │ ├── monkeystore.android.java │ │ ├── monkeystore.ios.cpp │ │ ├── monkeystore.winrt.cpp │ │ ├── process.cpp │ │ ├── requesters.cpp │ │ ├── socket.cpp │ │ ├── socket.java │ │ ├── socket_ipv6.cpp │ │ ├── socket_winrt.cpp │ │ ├── stream.as │ │ ├── stream.cpp │ │ ├── stream.cs │ │ ├── stream.java │ │ ├── stream.js │ │ ├── thread.as │ │ ├── thread.cpp │ │ ├── thread.cs │ │ ├── thread.java │ │ └── thread.js │ ├── pagemaker.monkey │ ├── pool.monkey │ ├── process.monkey │ ├── requesters.monkey │ ├── ringbuffer.monkey │ ├── socket.monkey │ ├── stream.monkey │ ├── tcpstream.monkey │ ├── thread.monkey │ └── url.monkey ├── dom │ ├── dom.js │ ├── dom.monkey │ ├── gldemo.monkey │ ├── mkwebgl.monkey │ ├── sockdemo.monkey │ ├── webgl.js │ ├── webgl.monkey │ ├── webgl.txt │ ├── websocket.js │ └── websocket.monkey ├── mojo │ ├── ProggyCleanSZ.fon │ ├── app.monkey │ ├── asyncimageloader.monkey │ ├── asyncloaders.monkey │ ├── asyncsoundloader.monkey │ ├── audio.monkey │ ├── audiodevice.monkey │ ├── data.monkey │ ├── data │ │ └── mojo_font.png │ ├── driver.monkey │ ├── graphics.monkey │ ├── graphicsdevice.monkey │ ├── input.monkey │ ├── inputdevice.monkey │ ├── keycodes.monkey │ ├── makefont.bmx │ ├── mojo.monkey │ ├── monkeydoc │ │ ├── app.monkeydoc │ │ ├── asyncloaders.monkeydoc │ │ ├── audio.monkeydoc │ │ ├── graphics.monkeydoc │ │ ├── input.monkeydoc │ │ ├── keycodes.monkeydoc │ │ └── mojo.monkeydoc │ └── native │ │ ├── asyncimageloader.as │ │ ├── asyncimageloader.js │ │ ├── asyncsoundloader.as │ │ ├── asyncsoundloader.js │ │ ├── mojo.android.java │ │ ├── mojo.flash.as │ │ ├── mojo.glfw.cpp │ │ ├── mojo.html5.js │ │ ├── mojo.ios.cpp │ │ ├── mojo.psm.cs │ │ ├── mojo.winrt.cpp │ │ └── mojo.xna.cs ├── mojo2 │ ├── bananas │ │ ├── bouncyaliens │ │ │ ├── bouncyaliens.data │ │ │ │ ├── alien1.png │ │ │ │ ├── alien2.png │ │ │ │ └── test.txt │ │ │ └── bouncyaliens.monkey │ │ ├── bumptest │ │ │ └── bumptest.monkey │ │ ├── directlight │ │ │ ├── directlight.data │ │ │ │ ├── t3.png │ │ │ │ ├── t3_NORMALS.png │ │ │ │ └── t3_SPECULAR.png │ │ │ └── directlight.monkey │ │ ├── drawprimitives │ │ │ └── drawprimitives.monkey │ │ ├── helloworld │ │ │ └── helloworld.monkey │ │ ├── letterbox │ │ │ └── letterbox.monkey │ │ ├── mojotest │ │ │ ├── mojotest.data │ │ │ │ └── images │ │ │ │ │ └── RedbrushAlpha.png │ │ │ └── mojotest.monkey │ │ ├── renderdrawlist │ │ │ └── renderdrawlist.monkey │ │ ├── rendererdemo │ │ │ ├── rendererdemo.data │ │ │ │ ├── t3.png │ │ │ │ ├── t3_NORMALS.png │ │ │ │ └── t3_SPECULAR.png │ │ │ └── rendererdemo.monkey │ │ ├── rendertoimage │ │ │ └── rendertoimage.monkey │ │ ├── shadereffect │ │ │ ├── shadereffect.data │ │ │ │ ├── bwshader.glsl │ │ │ │ └── default_player.png │ │ │ └── shadereffect.monkey │ │ ├── vectormonkey │ │ │ ├── vectormonkey.data │ │ │ │ └── data.txt │ │ │ └── vectormonkey.monkey │ │ └── writepixels │ │ │ └── writepixels.monkey │ ├── data │ │ ├── mojo2_bumpshader.glsl │ │ ├── mojo2_fastshader.glsl │ │ ├── mojo2_font.png │ │ ├── mojo2_lightmapshader.glsl │ │ ├── mojo2_matteshader.glsl │ │ ├── mojo2_program.glsl │ │ └── mojo2_shadowshader.glsl │ ├── glslparser.monkey │ ├── glutil.monkey │ ├── graphics.monkey │ ├── makefont.bmx │ ├── math3d.monkey │ ├── mojo2.monkey │ ├── monkeydoc │ │ ├── geom.monkeydoc │ │ ├── graphics.monkeydoc │ │ ├── mojo2.monkeydoc │ │ └── renderer.monkeydoc │ └── renderer.monkey ├── monkey │ ├── boxes.monkey │ ├── deque.monkey │ ├── lang.monkey │ ├── list.monkey │ ├── map.monkey │ ├── math.monkey │ ├── monkey.monkey │ ├── monkeydoc │ │ ├── boxes.monkeydoc │ │ ├── deque.monkeydoc │ │ ├── lang.monkeydoc │ │ ├── list.monkeydoc │ │ ├── map.monkeydoc │ │ ├── math.monkeydoc │ │ ├── monkey.monkeydoc │ │ ├── random.monkeydoc │ │ ├── set.monkeydoc │ │ └── stack.monkeydoc │ ├── native │ │ ├── lang.as │ │ ├── lang.cpp │ │ ├── lang.cs │ │ ├── lang.java │ │ └── lang.js │ ├── random.monkey │ ├── set.monkey │ └── stack.monkey ├── opengl │ ├── gl.h │ ├── gl2.h │ ├── gles11.h │ ├── gles11.monkey │ ├── gles11_src.txt │ ├── gles20.h │ ├── gles20.monkey │ ├── gles20_src.txt │ ├── makeglxx.monkey │ ├── monkeydoc │ │ ├── gles11.monkeydoc │ │ ├── gles20.monkeydoc │ │ └── opengl.monkeydoc │ ├── native │ │ ├── gles11.android.java │ │ ├── gles11.glfw.cpp │ │ ├── gles11.ios.cpp │ │ ├── gles20.android.java │ │ ├── gles20.angle.cpp │ │ ├── gles20.glfw.cpp │ │ ├── gles20.html5.js │ │ ├── gles20.ios.cpp │ │ └── gles20_win32_exts.cpp │ └── opengl.monkey ├── os │ ├── native │ │ └── os.cpp │ ├── os.monkey │ └── os.monkeydoc ├── reflection │ ├── monkeydoc │ │ ├── ArrayBoxer.monkeydoc │ │ ├── ClassInfo.monkeydoc │ │ ├── ConstInfo.monkeydoc │ │ ├── FieldInfo.monkeydoc │ │ ├── FunctionInfo.monkeydoc │ │ ├── GlobalInfo.monkeydoc │ │ ├── MethodInfo.monkeydoc │ │ └── reflection.monkeydoc │ ├── reflection.monkey │ └── reflector.monkey └── trans │ ├── astranslator.monkey │ ├── config.monkey │ ├── cpptranslator.monkey │ ├── cstranslator.monkey │ ├── decl.monkey │ ├── expr.monkey │ ├── javatranslator.monkey │ ├── jstranslator.monkey │ ├── parser.monkey │ ├── preprocessor.monkey │ ├── stmt.monkey │ ├── toker.monkey │ ├── trans.monkey │ ├── translator.monkey │ └── type.monkey ├── modules_ext └── .gitignore ├── src ├── launcher │ ├── info.plist │ ├── launcher.bmx │ ├── launcher.monkey │ ├── monkey.icns │ ├── monkey.ico │ ├── resource.o │ └── resource.rc ├── makedocs │ ├── apidoccer.monkey │ ├── docsdoccer.monkey │ ├── makedocs.monkey │ ├── modpath.monkey │ ├── parser.monkey │ ├── stringutil.monkey │ └── toker.monkey ├── mserver │ ├── mserver.bmx │ └── mserver.monkey ├── rebuildall.bmx ├── rebuildall.monkey ├── rebuildall.sh ├── ted │ ├── Info.plist │ ├── LICENSE.TXT │ ├── appicon.rc │ ├── codeeditor.cpp │ ├── codeeditor.h │ ├── colorswatch.cpp │ ├── colorswatch.h │ ├── debugtreemodel.cpp │ ├── debugtreemodel.h │ ├── finddialog.cpp │ ├── finddialog.h │ ├── finddialog.ui │ ├── findinfilesdialog.cpp │ ├── findinfilesdialog.h │ ├── findinfilesdialog.ui │ ├── icons │ │ ├── Back.png │ │ ├── Build-Run.png │ │ ├── Build.png │ │ ├── Close.png │ │ ├── Copy.png │ │ ├── Cut.png │ │ ├── Find.png │ │ ├── Forward.png │ │ ├── Go.png │ │ ├── Home.png │ │ ├── LICENSE.TXT │ │ ├── New.png │ │ ├── Open.png │ │ ├── Paste.png │ │ ├── Save.png │ │ ├── Step-In.png │ │ ├── Step-Out.png │ │ ├── Step.png │ │ └── Stop.png │ ├── macdeployqt-4.8.command │ ├── macdeployqt-5.5.command │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── prefs.cpp │ ├── prefs.h │ ├── prefsdialog.cpp │ ├── prefsdialog.h │ ├── prefsdialog.ui │ ├── process.cpp │ ├── process.h │ ├── projecttreemodel.cpp │ ├── projecttreemodel.h │ ├── resources.qrc │ ├── std.cpp │ ├── std.h │ ├── ted.icns │ ├── ted.ico │ └── ted.pro └── transcc │ ├── builder.monkey │ ├── builders │ ├── android.monkey │ ├── android_ndk.monkey │ ├── builders.monkey │ ├── flash.monkey │ ├── glfw.monkey │ ├── html5.monkey │ ├── ios.monkey │ ├── psm.monkey │ ├── stdcpp.monkey │ ├── winrt.monkey │ └── xna.monkey │ ├── transcc.build │ └── cpptool │ │ ├── CONFIG.MONKEY │ │ ├── main.cpp │ │ ├── main.h │ │ └── main_winnt.exe │ └── transcc.monkey └── targets ├── __deprecated__ ├── README.TXT ├── android │ ├── TARGET.MONKEY │ ├── genkey.bat │ ├── modules │ │ ├── monkeytarget.monkey │ │ └── native │ │ │ ├── androidgame.java │ │ │ └── monkeytarget.java │ └── template │ │ ├── CONFIG.MONKEY │ │ ├── MonkeyGame.java │ │ ├── assets │ │ └── .gitignore │ │ ├── build.properties │ │ ├── build.xml │ │ ├── libs │ │ └── .gitignore │ │ ├── nativegl │ │ ├── NativeGL.java │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── nativegl.c │ │ ├── libs │ │ │ ├── armeabi-v7a │ │ │ │ └── libnativegl.so │ │ │ ├── armeabi │ │ │ │ └── libnativegl.so │ │ │ └── x86 │ │ │ │ └── libnativegl.so │ │ └── obj │ │ │ └── local │ │ │ ├── armeabi-v7a │ │ │ ├── libnativegl.so │ │ │ └── objs │ │ │ │ └── nativegl │ │ │ │ ├── nativegl.o │ │ │ │ └── nativegl.o.d │ │ │ ├── armeabi │ │ │ ├── libnativegl.so │ │ │ └── objs │ │ │ │ └── nativegl │ │ │ │ ├── nativegl.o │ │ │ │ └── nativegl.o.d │ │ │ └── x86 │ │ │ ├── libnativegl.so │ │ │ └── objs │ │ │ └── nativegl │ │ │ ├── nativegl.o │ │ │ └── nativegl.o.d │ │ ├── proguard.cfg │ │ ├── project.properties │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── .gitignore │ │ └── values │ │ │ └── strings.xml │ │ └── templates │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── local.properties │ │ └── res │ │ └── layout │ │ └── main.xml ├── android_new │ ├── TARGET.MONKEY │ ├── genkey.bat │ ├── modules │ │ ├── monkeytarget.monkey │ │ └── native │ │ │ ├── androidgame.java │ │ │ └── monkeytarget.java │ └── template │ │ ├── CONFIG.MONKEY │ │ ├── MonkeyGame.java │ │ ├── assets │ │ └── .gitignore │ │ ├── build.properties │ │ ├── build.xml │ │ ├── google-play-services_lib │ │ ├── .classpath │ │ ├── README.txt │ │ ├── build.xml │ │ ├── libs │ │ │ ├── google-play-services.jar │ │ │ └── google-play-services.jar.properties │ │ ├── proguard-project.txt │ │ ├── proguard.txt │ │ ├── res │ │ │ ├── color │ │ │ │ ├── common_signin_btn_text_dark.xml │ │ │ │ ├── common_signin_btn_text_light.xml │ │ │ │ ├── wallet_primary_text_holo_light.xml │ │ │ │ └── wallet_secondary_text_holo_dark.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_text_pressed_light.9.png │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ └── powered_by_google_light.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_text_pressed_light.9.png │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ └── powered_by_google_light.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_text_pressed_light.9.png │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ └── powered_by_google_light.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_text_pressed_light.9.png │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ └── powered_by_google_light.png │ │ │ ├── drawable │ │ │ │ ├── common_signin_btn_icon_dark.xml │ │ │ │ ├── common_signin_btn_icon_light.xml │ │ │ │ ├── common_signin_btn_text_dark.xml │ │ │ │ └── common_signin_btn_text_light.xml │ │ │ ├── values-af │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-am │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ar │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-be │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-bg │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ca │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-cs │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-da │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-de │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-el │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-en-rGB │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-en-rIN │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-es-rUS │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-es │ │ │ │ ├── auth_strings.xml │ │ │ │ ├── common_strings.xml │ │ │ │ └── wallet_strings.xml │ │ │ ├── values-et-rEE │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-fa │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-fi │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-fr-rCA │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-fr │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-hi │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-hr │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-hu │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-hy-rAM │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-in │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-it │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-iw │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ja │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ka-rGE │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-km-rKH │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ko │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-lo-rLA │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-lt │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-lv │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-mn-rMN │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ms-rMY │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-nb │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-nl │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-pl │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-pt-rBR │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-pt-rPT │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-pt │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ro │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-ru │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-sk │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-sl │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-sr │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-sv │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-sw │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-th │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-tl │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-tr │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-uk │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-vi │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-zh-rCN │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-zh-rHK │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-zh-rTW │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ ├── values-zu │ │ │ │ ├── auth_strings.xml │ │ │ │ └── common_strings.xml │ │ │ └── values │ │ │ │ ├── admob_ads_attrs.xml │ │ │ │ ├── common_colors.xml │ │ │ │ ├── common_strings.xml │ │ │ │ ├── maps_attrs.xml │ │ │ │ ├── version.xml │ │ │ │ ├── wallet_attrs.xml │ │ │ │ ├── wallet_colors.xml │ │ │ │ ├── wallet_strings.xml │ │ │ │ └── wallet_styles.xml │ │ └── src │ │ │ └── android │ │ │ └── UnusedStub.java │ │ ├── langutil │ │ ├── LangUtil.java │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── langutil.c │ │ └── libs │ │ │ ├── .gitignore │ │ │ ├── armeabi-v7a │ │ │ └── liblangutil.so │ │ │ ├── armeabi │ │ │ └── liblangutil.so │ │ │ ├── mips │ │ │ └── liblangutil.so │ │ │ └── x86 │ │ │ └── liblangutil.so │ │ ├── libs │ │ └── .gitignore │ │ ├── nativegl │ │ ├── NativeGL.java │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── nativegl.c │ │ ├── libs │ │ │ ├── armeabi-v7a │ │ │ │ └── libnativegl.so │ │ │ ├── armeabi │ │ │ │ └── libnativegl.so │ │ │ └── x86 │ │ │ │ └── libnativegl.so │ │ └── obj │ │ │ └── local │ │ │ ├── armeabi-v7a │ │ │ ├── libnativegl.so │ │ │ └── objs │ │ │ │ └── nativegl │ │ │ │ ├── nativegl.o │ │ │ │ └── nativegl.o.d │ │ │ ├── armeabi │ │ │ ├── libnativegl.so │ │ │ └── objs │ │ │ │ └── nativegl │ │ │ │ ├── nativegl.o │ │ │ │ └── nativegl.o.d │ │ │ └── x86 │ │ │ ├── libnativegl.so │ │ │ └── objs │ │ │ └── nativegl │ │ │ ├── nativegl.o │ │ │ └── nativegl.o.d │ │ ├── proguard.cfg │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── .gitignore │ │ └── values │ │ │ └── strings.xml │ │ └── templates │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── google-play-services_lib │ │ ├── AndroidManifest.xml │ │ ├── local.properties │ │ └── project.properties │ │ ├── local.properties │ │ ├── project.properties │ │ └── res │ │ └── layout │ │ └── main.xml ├── glfw │ ├── TARGET.MONKEY │ ├── modules │ │ ├── monkeytarget.monkey │ │ └── native │ │ │ ├── glfwgame.cpp │ │ │ ├── monkeytarget.cpp │ │ │ ├── oggloader.cpp │ │ │ └── wavloader.cpp │ └── template │ │ ├── CONFIG.MONKEY │ │ ├── gcc_linux │ │ └── Makefile │ │ ├── gcc_winnt │ │ └── Makefile │ │ ├── glfw │ │ ├── COPYING.txt │ │ ├── include │ │ │ └── GL │ │ │ │ └── glfw.h │ │ └── lib │ │ │ ├── carbon │ │ │ ├── Makefile.carbon │ │ │ ├── Makefile.carbon.universal │ │ │ ├── carbon_enable.c │ │ │ ├── carbon_fullscreen.c │ │ │ ├── carbon_glext.c │ │ │ ├── carbon_init.c │ │ │ ├── carbon_joystick.c │ │ │ ├── carbon_thread.c │ │ │ ├── carbon_time.c │ │ │ ├── carbon_window.c │ │ │ ├── libglfw.pc.in │ │ │ └── platform.h │ │ │ ├── cocoa │ │ │ ├── Makefile.cocoa │ │ │ ├── cocoa_enable.m │ │ │ ├── cocoa_fullscreen.m │ │ │ ├── cocoa_glext.m │ │ │ ├── cocoa_init.m │ │ │ ├── cocoa_joystick.m │ │ │ ├── cocoa_thread.c │ │ │ ├── cocoa_time.m │ │ │ ├── cocoa_window.m │ │ │ ├── libglfw.pc.in │ │ │ └── platform.h │ │ │ ├── enable.c │ │ │ ├── fullscreen.c │ │ │ ├── glext.c │ │ │ ├── image.c │ │ │ ├── init.c │ │ │ ├── input.c │ │ │ ├── internal.h │ │ │ ├── joystick.c │ │ │ ├── stream.c │ │ │ ├── tga.c │ │ │ ├── thread.c │ │ │ ├── time.c │ │ │ ├── win32 │ │ │ ├── Makefile.win32.cross-mgw │ │ │ ├── Makefile.win32.lcc │ │ │ ├── Makefile.win32.mingw │ │ │ ├── Makefile.win32.msys │ │ │ ├── Makefile.win32.ow │ │ │ ├── glfwdll.def │ │ │ ├── libglfw.pc.in │ │ │ ├── platform.h │ │ │ ├── win32_dllmain.c │ │ │ ├── win32_enable.c │ │ │ ├── win32_fullscreen.c │ │ │ ├── win32_glext.c │ │ │ ├── win32_init.c │ │ │ ├── win32_joystick.c │ │ │ ├── win32_thread.c │ │ │ ├── win32_time.c │ │ │ └── win32_window.c │ │ │ ├── window.c │ │ │ └── x11 │ │ │ ├── Makefile.x11.in │ │ │ ├── platform.h │ │ │ ├── x11_enable.c │ │ │ ├── x11_fullscreen.c │ │ │ ├── x11_glext.c │ │ │ ├── x11_init.c │ │ │ ├── x11_joystick.c │ │ │ ├── x11_keysym2unicode.c │ │ │ ├── x11_thread.c │ │ │ ├── x11_time.c │ │ │ └── x11_window.c │ │ ├── main.cpp │ │ ├── main.h │ │ ├── main.mm │ │ ├── msvc │ │ ├── MonkeyGame.sln │ │ ├── MonkeyGame.vcxproj │ │ └── MonkeyGame.vcxproj.filters │ │ ├── openal │ │ ├── include │ │ │ ├── EFX-Util.h │ │ │ ├── al.h │ │ │ ├── alc.h │ │ │ ├── efx-creative.h │ │ │ ├── efx.h │ │ │ └── xram.h │ │ └── libs │ │ │ ├── Win32 │ │ │ ├── EFX-Util_MT │ │ │ │ └── EFX-Util.lib │ │ │ ├── EFX-Util_MTDLL │ │ │ │ └── EFX-Util.lib │ │ │ └── OpenAL32.lib │ │ │ └── Win64 │ │ │ ├── EFX-Util_MT │ │ │ └── EFX-Util.lib │ │ │ ├── EFX-Util_MTDLL │ │ │ └── EFX-Util.lib │ │ │ └── OpenAL32.lib │ │ ├── stb │ │ ├── stb_image.c │ │ ├── stb_image.h │ │ └── stb_vorbis.c │ │ └── xcode │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── MonkeyGame-Info.plist │ │ ├── MonkeyGame.xcodeproj │ │ └── project.pbxproj │ │ ├── MonkeyGame_Prefix.pch │ │ ├── data │ │ └── .gitignore │ │ ├── external │ │ └── .gitignore │ │ └── internal │ │ └── .gitignore ├── psm │ ├── TARGET.MONKEY │ ├── modules │ │ ├── monkeytarget.monkey │ │ └── native │ │ │ ├── monkeytarget.cs │ │ │ └── psmgame.cs │ └── template │ │ ├── CONFIG.MONKEY │ │ ├── MonkeyGame.cs │ │ ├── MonkeyGame.csproj │ │ ├── MonkeyGame.sln │ │ ├── app.xml │ │ └── shaders │ │ ├── Simple.fcg │ │ ├── Simple.vcg │ │ ├── Texture.fcg │ │ └── Texture.vcg └── xna │ ├── TARGET.MONKEY │ ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── monkeytarget.cs │ │ └── xnagame.cs │ └── template │ ├── CONFIG.MONKEY │ ├── MonkeyGame.sln │ └── MonkeyGame │ ├── MonkeyGame │ ├── Background.png │ ├── Game.ico │ ├── GameThumbnail.png │ ├── MonkeyGame.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Windows Phone Copy of MonkeyGame.csproj │ ├── Xbox 360 Copy of MonkeyGame.csproj │ └── obj │ │ ├── Windows Phone │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── build.force │ │ ├── Xbox 360 │ │ └── Debug │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── build.force │ └── MonkeyGameContent │ ├── MonkeyGameContent.contentproj │ └── obj │ └── x86 │ └── Debug │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── android ├── README.TXT ├── TARGET.MONKEY ├── genkey.bat ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── androidgame.java │ │ └── monkeytarget.java └── template │ ├── CONFIG.MONKEY │ ├── MonkeyGame.java │ ├── assets │ └── .gitignore │ ├── build.properties │ ├── build.xml │ ├── google-play-services-basement_lib │ ├── AndroidManifest.xml │ ├── R.txt │ ├── build.xml │ ├── libs │ │ └── classes.jar │ ├── local.properties │ ├── project.properties │ ├── res │ │ ├── values-af │ │ │ └── common_strings.xml │ │ ├── values-am │ │ │ └── common_strings.xml │ │ ├── values-ar │ │ │ └── common_strings.xml │ │ ├── values-az-rAZ │ │ │ └── common_strings.xml │ │ ├── values-bg │ │ │ └── common_strings.xml │ │ ├── values-bn-rBD │ │ │ └── common_strings.xml │ │ ├── values-ca │ │ │ └── common_strings.xml │ │ ├── values-cs │ │ │ └── common_strings.xml │ │ ├── values-da │ │ │ └── common_strings.xml │ │ ├── values-de │ │ │ └── common_strings.xml │ │ ├── values-el │ │ │ └── common_strings.xml │ │ ├── values-en-rAU │ │ │ └── common_strings.xml │ │ ├── values-en-rGB │ │ │ └── common_strings.xml │ │ ├── values-en-rIN │ │ │ └── common_strings.xml │ │ ├── values-es-rUS │ │ │ └── common_strings.xml │ │ ├── values-es │ │ │ └── common_strings.xml │ │ ├── values-et-rEE │ │ │ └── common_strings.xml │ │ ├── values-eu-rES │ │ │ └── common_strings.xml │ │ ├── values-fa │ │ │ └── common_strings.xml │ │ ├── values-fi │ │ │ └── common_strings.xml │ │ ├── values-fr-rCA │ │ │ └── common_strings.xml │ │ ├── values-fr │ │ │ └── common_strings.xml │ │ ├── values-gl-rES │ │ │ └── common_strings.xml │ │ ├── values-gu-rIN │ │ │ └── common_strings.xml │ │ ├── values-hi │ │ │ └── common_strings.xml │ │ ├── values-hr │ │ │ └── common_strings.xml │ │ ├── values-hu │ │ │ └── common_strings.xml │ │ ├── values-hy-rAM │ │ │ └── common_strings.xml │ │ ├── values-in │ │ │ └── common_strings.xml │ │ ├── values-is-rIS │ │ │ └── common_strings.xml │ │ ├── values-it │ │ │ └── common_strings.xml │ │ ├── values-iw │ │ │ └── common_strings.xml │ │ ├── values-ja │ │ │ └── common_strings.xml │ │ ├── values-ka-rGE │ │ │ └── common_strings.xml │ │ ├── values-kk-rKZ │ │ │ └── common_strings.xml │ │ ├── values-km-rKH │ │ │ └── common_strings.xml │ │ ├── values-kn-rIN │ │ │ └── common_strings.xml │ │ ├── values-ko │ │ │ └── common_strings.xml │ │ ├── values-ky-rKG │ │ │ └── common_strings.xml │ │ ├── values-lo-rLA │ │ │ └── common_strings.xml │ │ ├── values-lt │ │ │ └── common_strings.xml │ │ ├── values-lv │ │ │ └── common_strings.xml │ │ ├── values-mk-rMK │ │ │ └── common_strings.xml │ │ ├── values-ml-rIN │ │ │ └── common_strings.xml │ │ ├── values-mn-rMN │ │ │ └── common_strings.xml │ │ ├── values-mr-rIN │ │ │ └── common_strings.xml │ │ ├── values-ms-rMY │ │ │ └── common_strings.xml │ │ ├── values-my-rMM │ │ │ └── common_strings.xml │ │ ├── values-nb │ │ │ └── common_strings.xml │ │ ├── values-ne-rNP │ │ │ └── common_strings.xml │ │ ├── values-nl │ │ │ └── common_strings.xml │ │ ├── values-pa-rIN │ │ │ └── common_strings.xml │ │ ├── values-pl │ │ │ └── common_strings.xml │ │ ├── values-pt-rBR │ │ │ └── common_strings.xml │ │ ├── values-pt-rPT │ │ │ └── common_strings.xml │ │ ├── values-pt │ │ │ └── common_strings.xml │ │ ├── values-ro │ │ │ └── common_strings.xml │ │ ├── values-ru │ │ │ └── common_strings.xml │ │ ├── values-si-rLK │ │ │ └── common_strings.xml │ │ ├── values-sk │ │ │ └── common_strings.xml │ │ ├── values-sl │ │ │ └── common_strings.xml │ │ ├── values-sq-rAL │ │ │ └── common_strings.xml │ │ ├── values-sr │ │ │ └── common_strings.xml │ │ ├── values-sv │ │ │ └── common_strings.xml │ │ ├── values-sw │ │ │ └── common_strings.xml │ │ ├── values-ta-rIN │ │ │ └── common_strings.xml │ │ ├── values-te-rIN │ │ │ └── common_strings.xml │ │ ├── values-th │ │ │ └── common_strings.xml │ │ ├── values-tl │ │ │ └── common_strings.xml │ │ ├── values-tr │ │ │ └── common_strings.xml │ │ ├── values-uk │ │ │ └── common_strings.xml │ │ ├── values-ur-rPK │ │ │ └── common_strings.xml │ │ ├── values-uz-rUZ │ │ │ └── common_strings.xml │ │ ├── values-vi │ │ │ └── common_strings.xml │ │ ├── values-zh-rCN │ │ │ └── common_strings.xml │ │ ├── values-zh-rHK │ │ │ └── common_strings.xml │ │ ├── values-zh-rTW │ │ │ └── common_strings.xml │ │ ├── values-zu │ │ │ └── common_strings.xml │ │ └── values │ │ │ ├── auth_strings.xml │ │ │ ├── common_attrs.xml │ │ │ ├── common_strings.xml │ │ │ └── version.xml │ └── src │ │ └── android │ │ └── UnusedStub2.java │ ├── google-play-services_lib │ ├── AndroidManifest.xml │ ├── R.txt │ ├── build.xml │ ├── libs │ │ └── classes.jar │ ├── local.properties │ ├── project.properties │ ├── res │ │ └── values │ │ │ ├── admob_ads_attrs.xml │ │ │ ├── admob_iap_style.xml │ │ │ └── admob_strings.xml │ └── src │ │ └── android │ │ └── UnusedStub.java │ ├── langutil │ ├── LangUtil.java │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── langutil.c │ └── libs │ │ ├── .gitignore │ │ ├── armeabi-v7a │ │ └── liblangutil.so │ │ ├── armeabi │ │ └── liblangutil.so │ │ ├── mips │ │ └── liblangutil.so │ │ └── x86 │ │ └── liblangutil.so │ ├── libs │ └── .gitignore │ ├── nativegl │ ├── NativeGL.java │ ├── jni │ │ ├── Android.mk │ │ └── nativegl.c │ ├── libs │ │ ├── armeabi-v7a │ │ │ └── libnativegl.so │ │ ├── armeabi │ │ │ └── libnativegl.so │ │ └── x86 │ │ │ └── libnativegl.so │ └── obj │ │ └── local │ │ ├── armeabi-v7a │ │ ├── libnativegl.so │ │ └── objs │ │ │ └── nativegl │ │ │ ├── nativegl.o │ │ │ └── nativegl.o.d │ │ ├── armeabi │ │ ├── libnativegl.so │ │ └── objs │ │ │ └── nativegl │ │ │ ├── nativegl.o │ │ │ └── nativegl.o.d │ │ └── x86 │ │ ├── libnativegl.so │ │ └── objs │ │ └── nativegl │ │ ├── nativegl.o │ │ └── nativegl.o.d │ ├── proguard.cfg │ ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── .gitignore │ └── values │ │ └── strings.xml │ └── templates │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── google-play-services-basement_lib │ └── local.properties │ ├── google-play-services_lib │ └── local.properties │ ├── local.properties │ ├── project.properties │ └── res │ └── layout │ └── main.xml ├── android_ouya ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── androidgame.java │ │ ├── monkeystore.ouya.java │ │ └── monkeytarget.java └── template │ ├── CONFIG.MONKEY │ ├── MonkeyGame.java │ ├── assets │ └── .gitignore │ ├── build.properties │ ├── build.xml │ ├── libs │ └── ouya-sdk.jar │ ├── nativegl │ ├── NativeGL.java │ ├── jni │ │ ├── Android.mk │ │ └── nativegl.c │ ├── libs │ │ ├── armeabi-v7a │ │ │ └── libnativegl.so │ │ ├── armeabi │ │ │ └── libnativegl.so │ │ └── x86 │ │ │ └── libnativegl.so │ └── obj │ │ └── local │ │ ├── armeabi-v7a │ │ ├── libnativegl.so │ │ └── objs │ │ │ └── nativegl │ │ │ ├── nativegl.o │ │ │ └── nativegl.o.d │ │ ├── armeabi │ │ ├── libnativegl.so │ │ └── objs │ │ │ └── nativegl │ │ │ ├── nativegl.o │ │ │ └── nativegl.o.d │ │ └── x86 │ │ ├── libnativegl.so │ │ └── objs │ │ └── nativegl │ │ ├── nativegl.o │ │ └── nativegl.o.d │ ├── proguard.cfg │ ├── project.properties │ ├── res │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── ouya_icon.png │ ├── layout │ │ └── .gitignore │ └── values │ │ └── strings.xml │ └── templates │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── local.properties │ └── res │ └── layout │ └── main.xml ├── cpptool ├── TARGET.MONKEY ├── modules │ └── monkeytarget.monkey └── template │ ├── CONFIG.MONKEY │ ├── main.cpp │ └── main.h ├── flash ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── flashgame.as │ │ └── monkeytarget.as └── template │ ├── CONFIG.MONKEY │ ├── MonkeyGame.as │ ├── MonkeyGame.html │ └── favicon.ico ├── glfw3 ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── glfwgame.cpp │ │ ├── monkeytarget.cpp │ │ ├── oggloader.cpp │ │ └── wavloader.cpp └── template │ ├── CONFIG.MONKEY │ ├── gcc_linux │ └── Makefile │ ├── gcc_winnt │ └── Makefile │ ├── glfw3 │ ├── COPYING.txt │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad.c │ │ ├── glad │ │ │ └── glad.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── iokit_joystick.h │ │ ├── iokit_joystick.m │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mach_time.c │ │ ├── mir_init.c │ │ ├── mir_monitor.c │ │ ├── mir_platform.h │ │ ├── mir_window.c │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── posix_tls.c │ │ ├── posix_tls.h │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_tls.c │ │ ├── win32_tls.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── winmm_joystick.c │ │ ├── winmm_joystick.h │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ ├── main.cpp │ ├── main.h │ ├── main.mm │ ├── msvc │ ├── MonkeyGame.sln │ ├── MonkeyGame.vcxproj │ ├── MonkeyGame.vcxproj.filters │ └── MonkeyGame.vcxproj.user │ ├── openal │ ├── include │ │ ├── EFX-Util.h │ │ ├── al.h │ │ ├── alc.h │ │ ├── efx-creative.h │ │ ├── efx.h │ │ └── xram.h │ └── libs │ │ ├── Win32 │ │ ├── EFX-Util_MT │ │ │ └── EFX-Util.lib │ │ ├── EFX-Util_MTDLL │ │ │ └── EFX-Util.lib │ │ └── OpenAL32.lib │ │ └── Win64 │ │ ├── EFX-Util_MT │ │ └── EFX-Util.lib │ │ ├── EFX-Util_MTDLL │ │ └── EFX-Util.lib │ │ └── OpenAL32.lib │ ├── stb │ ├── stb_image.c │ ├── stb_image.h │ └── stb_vorbis.c │ └── xcode │ ├── English.lproj │ └── InfoPlist.strings │ ├── MonkeyGame-Info.plist │ ├── MonkeyGame.xcodeproj │ └── project.pbxproj │ ├── MonkeyGame_Prefix.pch │ ├── data │ └── .gitignore │ ├── external │ └── .gitignore │ └── internal │ └── .gitignore ├── glfw3_angle ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── glfwgame.cpp │ │ ├── monkeytarget.cpp │ │ ├── oggloader.cpp │ │ └── wavloader.cpp └── template │ ├── CONFIG.MONKEY │ ├── angle │ ├── bin │ │ ├── d3dcompiler_47.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── include │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ └── KHR │ │ │ └── khrplatform.h │ └── lib │ │ ├── libEGL.lib │ │ └── libGLESv2.lib │ ├── gcc_winnt │ └── Makefile │ ├── glfw3 │ ├── COPYING.txt │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad.c │ │ ├── glad │ │ │ └── glad.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── iokit_joystick.h │ │ ├── iokit_joystick.m │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mach_time.c │ │ ├── mir_init.c │ │ ├── mir_monitor.c │ │ ├── mir_platform.h │ │ ├── mir_window.c │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── posix_tls.c │ │ ├── posix_tls.h │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_tls.c │ │ ├── win32_tls.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── winmm_joystick.c │ │ ├── winmm_joystick.h │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ ├── main.cpp │ ├── main.h │ ├── msvc │ ├── MonkeyGame.sln │ ├── MonkeyGame.vcxproj │ ├── MonkeyGame.vcxproj.filters │ └── MonkeyGame.vcxproj.user │ ├── openal │ ├── include │ │ ├── EFX-Util.h │ │ ├── al.h │ │ ├── alc.h │ │ ├── efx-creative.h │ │ ├── efx.h │ │ └── xram.h │ └── libs │ │ ├── Win32 │ │ ├── EFX-Util_MT │ │ │ └── EFX-Util.lib │ │ ├── EFX-Util_MTDLL │ │ │ └── EFX-Util.lib │ │ └── OpenAL32.lib │ │ └── Win64 │ │ ├── EFX-Util_MT │ │ └── EFX-Util.lib │ │ ├── EFX-Util_MTDLL │ │ └── EFX-Util.lib │ │ └── OpenAL32.lib │ └── stb │ ├── stb_image.c │ ├── stb_image.h │ └── stb_vorbis.c ├── html5 ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── html5game.js │ │ └── monkeytarget.js └── template │ ├── CONFIG.MONKEY │ ├── MonkeyGame.html │ ├── favicon.ico │ └── main.js ├── ios ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── iosgame.cpp │ │ ├── monkeytarget.cpp │ │ └── wavloader.cpp └── template │ ├── CONFIG.MONKEY │ ├── MainWindow.xib │ ├── MonkeyGame-Info.plist │ ├── MonkeyGame.xcodeproj │ └── project.pbxproj │ ├── MonkeyGame_Prefix.pch │ ├── data │ └── .gitignore │ ├── libs │ └── .gitignore │ ├── main.h │ └── main.mm ├── winrt_win8 ├── TARGET.MONKEY ├── modules │ ├── monkeytarget.monkey │ └── native │ │ ├── monkeytarget.cpp │ │ └── winrtgame.cpp └── template │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── Logo.png │ ├── SimplePixelShader.cso │ ├── SimpleVertexShader.cso │ ├── SmallLogo.png │ ├── SplashScreen.png │ ├── StoreLogo.png │ ├── TexturePixelShader.cso │ ├── TextureVertexShader.cso │ └── WindowsStoreProxy.xml │ ├── CONFIG.MONKEY │ ├── Common │ └── StandardStyles.xaml │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MonkeyGame.cpp │ ├── MonkeyGame.csproj │ ├── MonkeyGame.csproj.user │ ├── MonkeyGame.sln │ ├── MonkeyGameNative.vcxproj │ ├── MonkeyGame_TemporaryKey.pfx │ ├── NativeGame.cpp │ ├── NativeGame.h │ ├── Package.appxmanifest │ ├── Properties │ └── AssemblyInfo.cs │ ├── SimplePixelShader.hlsl │ ├── SimpleVertexShader.hlsl │ ├── TexturePixelShader.hlsl │ ├── TextureVertexShader.hlsl │ ├── pch.cpp │ └── pch.h └── winrt_winphone8 ├── TARGET.MONKEY ├── modules ├── monkeytarget.monkey └── native │ ├── monkeytarget.cpp │ ├── wavloader.cpp │ └── winrtgame.cpp └── template ├── App.xaml ├── App.xaml.cs ├── Assets ├── AlignmentGrid.png ├── ApplicationIcon.png └── Tiles │ ├── FlipCycleTileLarge.png │ ├── FlipCycleTileMedium.png │ ├── FlipCycleTileSmall.png │ ├── IconicTileMediumLarge.png │ └── IconicTileSmall.png ├── CONFIG.MONKEY ├── Direct3DContentProvider.cpp ├── Direct3DContentProvider.h ├── LocalizedStrings.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MonkeyGame.PhoneComponent.cpp ├── MonkeyGame.PhoneComponent.h ├── MonkeyGame.PhoneComponent.vcxproj ├── MonkeyGame.PhoneComponent.vcxproj.filters ├── MonkeyGame.cpp ├── MonkeyGame.csproj ├── MonkeyGame.csproj.user ├── MonkeyGame.sln ├── Properties ├── AppManifest.xml ├── AssemblyInfo.cs └── WMAppManifest.xml ├── Resources ├── AppResources.Designer.cs └── AppResources.resx ├── SimplePixelShader.hlsl ├── SimpleVertexShader.hlsl ├── TexturePixelShader.hlsl ├── TextureVertexShader.hlsl ├── pch.cpp ├── pch.h └── stb ├── stb_image.c └── stb_vorbis.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/.gitignore -------------------------------------------------------------------------------- /README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/README.TXT -------------------------------------------------------------------------------- /VERSIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/VERSIONS.TXT -------------------------------------------------------------------------------- /bananas/Richard_Betson/TileImage/TileImage.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/Richard_Betson/TileImage/TileImage.monkey -------------------------------------------------------------------------------- /bananas/beaker/angelfont_example/angelfont.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/beaker/angelfont_example/angelfont.monkey -------------------------------------------------------------------------------- /bananas/beaker/angelfont_example/char.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/beaker/angelfont_example/char.monkey -------------------------------------------------------------------------------- /bananas/beaker/angelfont_example/config.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/beaker/angelfont_example/config.monkey -------------------------------------------------------------------------------- /bananas/beaker/angelfont_example/kernpair.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/beaker/angelfont_example/kernpair.monkey -------------------------------------------------------------------------------- /bananas/beaker/angelfont_example/simpleinput.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/beaker/angelfont_example/simpleinput.monkey -------------------------------------------------------------------------------- /bananas/beaker/angelfont_example/simpletextbox.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/beaker/angelfont_example/simpletextbox.monkey -------------------------------------------------------------------------------- /bananas/charlie/blobmonster/blobmonster.data/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/charlie/blobmonster/blobmonster.data/blob.png -------------------------------------------------------------------------------- /bananas/charlie/blobmonster/blobmonster.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/charlie/blobmonster/blobmonster.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/matchup.data/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/matchup.data/images/bg.png -------------------------------------------------------------------------------- /bananas/devolonter/matchup/matchup.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/matchup.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/card.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/card.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/game.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/game.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/gamefield.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/gamefield.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/helpers.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/helpers.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/progressbar.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/progressbar.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/timer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/timer.monkey -------------------------------------------------------------------------------- /bananas/devolonter/matchup/src/tweening.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/devolonter/matchup/src/tweening.monkey -------------------------------------------------------------------------------- /bananas/difference/champagne/champagne.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/difference/champagne/champagne.monkey -------------------------------------------------------------------------------- /bananas/difference/clock/clock.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/difference/clock/clock.monkey -------------------------------------------------------------------------------- /bananas/ferdi/breakout/breakout.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/ferdi/breakout/breakout.monkey -------------------------------------------------------------------------------- /bananas/ferdi/snake/snake.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/ferdi/snake/snake.monkey -------------------------------------------------------------------------------- /bananas/gerryq/picpuzzle/picpuzzle.data/pic000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/gerryq/picpuzzle/picpuzzle.data/pic000.jpg -------------------------------------------------------------------------------- /bananas/gerryq/picpuzzle/picpuzzle.data/pic001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/gerryq/picpuzzle/picpuzzle.data/pic001.jpg -------------------------------------------------------------------------------- /bananas/gerryq/picpuzzle/picpuzzle.data/pic002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/gerryq/picpuzzle/picpuzzle.data/pic002.jpg -------------------------------------------------------------------------------- /bananas/gerryq/picpuzzle/picpuzzle.data/rightbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/gerryq/picpuzzle/picpuzzle.data/rightbar.png -------------------------------------------------------------------------------- /bananas/gerryq/picpuzzle/picpuzzle.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/gerryq/picpuzzle/picpuzzle.monkey -------------------------------------------------------------------------------- /bananas/hitoro/autofit/autofit.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/autofit/autofit.monkey -------------------------------------------------------------------------------- /bananas/hitoro/autofit/autofitdemo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/autofit/autofitdemo.monkey -------------------------------------------------------------------------------- /bananas/hitoro/autofit/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/autofit/info.txt -------------------------------------------------------------------------------- /bananas/hitoro/autofit/simpledemo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/autofit/simpledemo.monkey -------------------------------------------------------------------------------- /bananas/hitoro/basicgame/basicgame.data/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/basicgame/basicgame.data/player.png -------------------------------------------------------------------------------- /bananas/hitoro/basicgame/basicgame.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/basicgame/basicgame.monkey -------------------------------------------------------------------------------- /bananas/hitoro/delta/delta timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/delta/delta timing.txt -------------------------------------------------------------------------------- /bananas/hitoro/delta/delta.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/delta/delta.monkey -------------------------------------------------------------------------------- /bananas/hitoro/gamestates_demo/gamestates_demo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/gamestates_demo/gamestates_demo.monkey -------------------------------------------------------------------------------- /bananas/hitoro/jump_rotate/jump_rotate.data/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/jump_rotate/jump_rotate.data/block.png -------------------------------------------------------------------------------- /bananas/hitoro/jump_rotate/jump_rotate.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/jump_rotate/jump_rotate.monkey -------------------------------------------------------------------------------- /bananas/hitoro/matrixrocks/explained.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/matrixrocks/explained.txt -------------------------------------------------------------------------------- /bananas/hitoro/matrixrocks/matrixrocks.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/matrixrocks/matrixrocks.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/autofit.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/autofit.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/block.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/block.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/button.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/button.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/checkkeys.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/checkkeys.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/collisions.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/collisions.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/constants.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/constants.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/defaultmedia.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/defaultmedia.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/delta.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/delta.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/functions.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/functions.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/game.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/game.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/globals.monkey: -------------------------------------------------------------------------------- 1 | 2 | Import rockout 3 | 4 | -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/level.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/level.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/media.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/media.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/rendergame.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/rendergame.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/rocket.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/rocket.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/scorebubble.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/scorebubble.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/session.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/session.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/shot.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/shot.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/sprite.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/sprite.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/timer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/timer.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/updategame.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/updategame.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/imports/virtual.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/imports/virtual.monkey -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level1.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level10.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level2.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level3.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level4.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level5.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level6.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level7.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level8.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/level9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/level9.txt -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.data/levels.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.data/levels.bb -------------------------------------------------------------------------------- /bananas/hitoro/rockout/rockout.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/hitoro/rockout/rockout.monkey -------------------------------------------------------------------------------- /bananas/impixi/life/life.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/impixi/life/life.monkey -------------------------------------------------------------------------------- /bananas/mak/acceltest/acceltest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/acceltest/acceltest.monkey -------------------------------------------------------------------------------- /bananas/mak/admobtest/admobtest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/admobtest/admobtest.monkey -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/happy.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/happy.m4a -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/happy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/happy.mp3 -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/happy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/happy.ogg -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/happy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/happy.wav -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/happy.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/happy.wma -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/shoot.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/shoot.m4a -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/shoot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/shoot.mp3 -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/shoot.ogg -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/shoot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/shoot.wav -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/shoot.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/shoot.wma -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/tinkle.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/tinkle.m4a -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/tinkle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/tinkle.mp3 -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/tinkle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/tinkle.ogg -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/tinkle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/tinkle.wav -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.data/tinkle.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.data/tinkle.wma -------------------------------------------------------------------------------- /bananas/mak/audiotest/audiotest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/audiotest/audiotest.monkey -------------------------------------------------------------------------------- /bananas/mak/bbgametest/bbgametest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/bbgametest/bbgametest.monkey -------------------------------------------------------------------------------- /bananas/mak/bouncyaliens/bouncyaliens.data/alien1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/bouncyaliens/bouncyaliens.data/alien1.png -------------------------------------------------------------------------------- /bananas/mak/bouncyaliens/bouncyaliens.data/alien2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/bouncyaliens/bouncyaliens.data/alien2.png -------------------------------------------------------------------------------- /bananas/mak/bouncyaliens/bouncyaliens.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/bouncyaliens/bouncyaliens.monkey -------------------------------------------------------------------------------- /bananas/mak/dynamicimage/dynamicimage.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/dynamicimage/dynamicimage.monkey -------------------------------------------------------------------------------- /bananas/mak/echoserver_tcp/echoserver_tcp.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/echoserver_tcp/echoserver_tcp.monkey -------------------------------------------------------------------------------- /bananas/mak/echoserver_udp/echoserver_udp.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/echoserver_udp/echoserver_udp.monkey -------------------------------------------------------------------------------- /bananas/mak/exceptions/exceptions.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/exceptions/exceptions.monkey -------------------------------------------------------------------------------- /bananas/mak/fileiotest/fileiotest.data/test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/fileiotest/fileiotest.data/test.dat -------------------------------------------------------------------------------- /bananas/mak/fileiotest/fileiotest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/fileiotest/fileiotest.monkey -------------------------------------------------------------------------------- /bananas/mak/filetest/filetest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/filetest/filetest.monkey -------------------------------------------------------------------------------- /bananas/mak/firepaint/firepaint.data/bluspark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/firepaint/firepaint.data/bluspark.png -------------------------------------------------------------------------------- /bananas/mak/firepaint/firepaint.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/firepaint/firepaint.monkey -------------------------------------------------------------------------------- /bananas/mak/fpstest/fpstest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/fpstest/fpstest.monkey -------------------------------------------------------------------------------- /bananas/mak/gles20cube/geom.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/geom.monkey -------------------------------------------------------------------------------- /bananas/mak/gles20cube/gles20cube.data/cube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/gles20cube.data/cube.txt -------------------------------------------------------------------------------- /bananas/mak/gles20cube/gles20cube.data/fshader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/gles20cube.data/fshader.txt -------------------------------------------------------------------------------- /bananas/mak/gles20cube/gles20cube.data/mandril.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/gles20cube.data/mandril.jpg -------------------------------------------------------------------------------- /bananas/mak/gles20cube/gles20cube.data/vshader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/gles20cube.data/vshader.txt -------------------------------------------------------------------------------- /bananas/mak/gles20cube/gles20cube.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/gles20cube.monkey -------------------------------------------------------------------------------- /bananas/mak/gles20cube/mat4.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/mat4.monkey -------------------------------------------------------------------------------- /bananas/mak/gles20cube/vec3.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/gles20cube/vec3.monkey -------------------------------------------------------------------------------- /bananas/mak/httprequest/httprequest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/httprequest/httprequest.monkey -------------------------------------------------------------------------------- /bananas/mak/iaptest/iaptest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/iaptest/iaptest.monkey -------------------------------------------------------------------------------- /bananas/mak/ifacetest/ifacetest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/ifacetest/ifacetest -------------------------------------------------------------------------------- /bananas/mak/ifacetest/ifacetest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/ifacetest/ifacetest.monkey -------------------------------------------------------------------------------- /bananas/mak/ifacetest/ifacetest2.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/ifacetest/ifacetest2.monkey -------------------------------------------------------------------------------- /bananas/mak/joytest/joytest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/joytest/joytest.monkey -------------------------------------------------------------------------------- /bananas/mak/jsonstream/jsonstream.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/jsonstream/jsonstream.monkey -------------------------------------------------------------------------------- /bananas/mak/keyboardtest/keyboardtest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/keyboardtest/keyboardtest.monkey -------------------------------------------------------------------------------- /bananas/mak/mojotest/mojotest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/mojotest/mojotest.monkey -------------------------------------------------------------------------------- /bananas/mak/opengltest/opengltest.data/Grass_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/opengltest/opengltest.data/Grass_1.png -------------------------------------------------------------------------------- /bananas/mak/opengltest/opengltest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/opengltest/opengltest.monkey -------------------------------------------------------------------------------- /bananas/mak/reflectiontest/reflectiontest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/reflectiontest/reflectiontest.monkey -------------------------------------------------------------------------------- /bananas/mak/smoothscroll/smoothscroll.bmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/smoothscroll/smoothscroll.bmx -------------------------------------------------------------------------------- /bananas/mak/smoothscroll/smoothscroll.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/smoothscroll/smoothscroll.monkey -------------------------------------------------------------------------------- /bananas/mak/suspendtest/suspendtest.data/Kalimba.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/suspendtest/suspendtest.data/Kalimba.ogg -------------------------------------------------------------------------------- /bananas/mak/suspendtest/suspendtest.data/tinkle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/suspendtest/suspendtest.data/tinkle.mp3 -------------------------------------------------------------------------------- /bananas/mak/suspendtest/suspendtest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/suspendtest/suspendtest.monkey -------------------------------------------------------------------------------- /bananas/mak/unicodetest/unicodetest.data/ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/unicodetest/unicodetest.data/ascii.txt -------------------------------------------------------------------------------- /bananas/mak/unicodetest/unicodetest.data/str0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/unicodetest/unicodetest.data/str0.txt -------------------------------------------------------------------------------- /bananas/mak/unicodetest/unicodetest.data/str0_utf8.txt: -------------------------------------------------------------------------------- 1 | Ṯḙṧ†῿㿿翿￿ -------------------------------------------------------------------------------- /bananas/mak/unicodetest/unicodetest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/mak/unicodetest/unicodetest.monkey -------------------------------------------------------------------------------- /bananas/origaming/FollowMouse/FollowMouse.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/origaming/FollowMouse/FollowMouse.monkey -------------------------------------------------------------------------------- /bananas/origaming/MacOsMenu/MacOsMenu.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/origaming/MacOsMenu/MacOsMenu.monkey -------------------------------------------------------------------------------- /bananas/origaming/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/origaming/README.txt -------------------------------------------------------------------------------- /bananas/skn3/config/config.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/config/config.monkey -------------------------------------------------------------------------------- /bananas/skn3/config/configdemo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/config/configdemo.monkey -------------------------------------------------------------------------------- /bananas/skn3/gamepad/gamepad.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/gamepad/gamepad.monkey -------------------------------------------------------------------------------- /bananas/skn3/iconfun/iconfun.data/font_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/iconfun/iconfun.data/font_black.png -------------------------------------------------------------------------------- /bananas/skn3/iconfun/iconfun.data/font_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/iconfun/iconfun.data/font_white.png -------------------------------------------------------------------------------- /bananas/skn3/iconfun/iconfun.data/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/iconfun/iconfun.data/loading.png -------------------------------------------------------------------------------- /bananas/skn3/iconfun/iconfun.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/iconfun/iconfun.monkey -------------------------------------------------------------------------------- /bananas/skn3/iconfun/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/iconfun/index.php -------------------------------------------------------------------------------- /bananas/skn3/monkenstein/monkenstein.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/monkenstein/monkenstein.monkey -------------------------------------------------------------------------------- /bananas/skn3/spiralmatrix/spiralmatrix.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/spiralmatrix/spiralmatrix.monkey -------------------------------------------------------------------------------- /bananas/skn3/texteffect/texteffect.data/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/texteffect/texteffect.data/font.png -------------------------------------------------------------------------------- /bananas/skn3/texteffect/texteffect.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/texteffect/texteffect.monkey -------------------------------------------------------------------------------- /bananas/skn3/tweening/tween.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/tweening/tween.monkey -------------------------------------------------------------------------------- /bananas/skn3/tweening/tweendemo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/skn3/tweening/tweendemo.monkey -------------------------------------------------------------------------------- /bananas/warpy/bezier/bezier.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/bezier/bezier.monkey -------------------------------------------------------------------------------- /bananas/warpy/hilbert/hilbert.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/hilbert/hilbert.monkey -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/bg.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/bg.mp3 -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/bg.png -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/clop1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/clop1.mp3 -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/clop2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/clop2.mp3 -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/clop3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/clop3.mp3 -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/fg.png -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/horse.png -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.data/neigh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.data/neigh.mp3 -------------------------------------------------------------------------------- /bananas/warpy/horsey/horsey.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/horsey/horsey.monkey -------------------------------------------------------------------------------- /bananas/warpy/json/json.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/json/json.monkey -------------------------------------------------------------------------------- /bananas/warpy/monkeypuzzle/monkeypuzzle.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/monkeypuzzle/monkeypuzzle.monkey -------------------------------------------------------------------------------- /bananas/warpy/pegs/pegs.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/pegs/pegs.monkey -------------------------------------------------------------------------------- /bananas/warpy/transform/transform.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/transform/transform.monkey -------------------------------------------------------------------------------- /bananas/warpy/transform/transform_mouse.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bananas/warpy/transform/transform_mouse.monkey -------------------------------------------------------------------------------- /bin/config.linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bin/config.linux.txt -------------------------------------------------------------------------------- /bin/config.macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bin/config.macos.txt -------------------------------------------------------------------------------- /bin/config.winnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/bin/config.winnt.txt -------------------------------------------------------------------------------- /bin/docstyle.txt: -------------------------------------------------------------------------------- 1 | devolonter 2 | -------------------------------------------------------------------------------- /docs/monkeydoc/API Reference.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/API Reference.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Credits.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Credits.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Home.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Home.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Links.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Links.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Mojo2 samples.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Mojo2 samples.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/File formats.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/File formats.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Key codes.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Key codes.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/And.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/And.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Bool.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Bool.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Case.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Case.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Else.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Else.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/End.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/End.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Exit.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Exit.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/For.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/For.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/If.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/If.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Int.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Int.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Mod.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Mod.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/New.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/New.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Next.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Next.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Not.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Not.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Null.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Null.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Or.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Or.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Self.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Self.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Shl.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Shl.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Shr.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Shr.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Step.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Step.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Then.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Then.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/To.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/To.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/True.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/True.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Try.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Try.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Void.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Void.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Programming/Keywords/Wend.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Programming/Keywords/Wend.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Samples.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Samples.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Target SDKs.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Target SDKs.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Tools/MServer.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Tools/MServer.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Tools/Makedocs.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Tools/Makedocs.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Tools/Monkey.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Tools/Monkey.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Tools/Ted.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Tools/Ted.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Tools/Trans.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Tools/Trans.monkeydoc -------------------------------------------------------------------------------- /docs/monkeydoc/Tutorials/Getting started.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/monkeydoc/Tutorials/Getting started.monkeydoc -------------------------------------------------------------------------------- /docs/templates/blitzmunter/data/monkey32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/blitzmunter/data/monkey32.png -------------------------------------------------------------------------------- /docs/templates/blitzmunter/index_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/blitzmunter/index_template.html -------------------------------------------------------------------------------- /docs/templates/blitzmunter/page_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/blitzmunter/page_template.html -------------------------------------------------------------------------------- /docs/templates/blitzmunter/pagestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/blitzmunter/pagestyle.css -------------------------------------------------------------------------------- /docs/templates/blitzmunter/scope_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/blitzmunter/scope_template.html -------------------------------------------------------------------------------- /docs/templates/devolonter/data/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/devolonter/data/monkey.png -------------------------------------------------------------------------------- /docs/templates/devolonter/index_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/devolonter/index_template.html -------------------------------------------------------------------------------- /docs/templates/devolonter/page_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/devolonter/page_template.html -------------------------------------------------------------------------------- /docs/templates/devolonter/pagestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/devolonter/pagestyle.css -------------------------------------------------------------------------------- /docs/templates/devolonter/scope_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/docs/templates/devolonter/scope_template.html -------------------------------------------------------------------------------- /modules/brl/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/README.TXT -------------------------------------------------------------------------------- /modules/brl/admob.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/admob.monkey -------------------------------------------------------------------------------- /modules/brl/asyncevent.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/asyncevent.monkey -------------------------------------------------------------------------------- /modules/brl/brl.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/brl.monkey -------------------------------------------------------------------------------- /modules/brl/databuffer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/databuffer.monkey -------------------------------------------------------------------------------- /modules/brl/datastream.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/datastream.monkey -------------------------------------------------------------------------------- /modules/brl/filepath.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/filepath.monkey -------------------------------------------------------------------------------- /modules/brl/filestream.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/filestream.monkey -------------------------------------------------------------------------------- /modules/brl/filesystem.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/filesystem.monkey -------------------------------------------------------------------------------- /modules/brl/gamecenter.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/gamecenter.monkey -------------------------------------------------------------------------------- /modules/brl/gametarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/gametarget.monkey -------------------------------------------------------------------------------- /modules/brl/httprequest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/httprequest.monkey -------------------------------------------------------------------------------- /modules/brl/json.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/json.monkey -------------------------------------------------------------------------------- /modules/brl/markdown.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/markdown.monkey -------------------------------------------------------------------------------- /modules/brl/monkeydoc/admob.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/admob.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/asyncevent.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/asyncevent.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/brl.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/brl.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/databuffer.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/databuffer.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/datastream.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/datastream.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/filepath.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/filepath.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/filestream.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/filestream.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/filesystem.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/filesystem.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/gamecenter.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/gamecenter.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/httprequest.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/httprequest.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/json.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/json.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/markdown.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/markdown.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/monkeystore.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/monkeystore.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/pool.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/pool.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/process.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/process.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/requesters.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/requesters.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/ringbuffer.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/ringbuffer.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/socket.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/socket.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/stream.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/stream.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/tcpstream.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/tcpstream.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeydoc/url.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeydoc/url.monkeydoc -------------------------------------------------------------------------------- /modules/brl/monkeystore.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/monkeystore.monkey -------------------------------------------------------------------------------- /modules/brl/native/admob.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/admob.android.java -------------------------------------------------------------------------------- /modules/brl/native/admob.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/admob.ios.cpp -------------------------------------------------------------------------------- /modules/brl/native/admob_googleplay.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/admob_googleplay.android.java -------------------------------------------------------------------------------- /modules/brl/native/databuffer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/databuffer.as -------------------------------------------------------------------------------- /modules/brl/native/databuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/databuffer.cpp -------------------------------------------------------------------------------- /modules/brl/native/databuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/databuffer.cs -------------------------------------------------------------------------------- /modules/brl/native/databuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/databuffer.java -------------------------------------------------------------------------------- /modules/brl/native/databuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/databuffer.js -------------------------------------------------------------------------------- /modules/brl/native/filestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/filestream.cpp -------------------------------------------------------------------------------- /modules/brl/native/filestream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/filestream.cs -------------------------------------------------------------------------------- /modules/brl/native/filestream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/filestream.java -------------------------------------------------------------------------------- /modules/brl/native/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/filesystem.cpp -------------------------------------------------------------------------------- /modules/brl/native/filesystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/filesystem.java -------------------------------------------------------------------------------- /modules/brl/native/gamecenter.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/gamecenter.ios.cpp -------------------------------------------------------------------------------- /modules/brl/native/gametarget.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/gametarget.as -------------------------------------------------------------------------------- /modules/brl/native/gametarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/gametarget.cpp -------------------------------------------------------------------------------- /modules/brl/native/gametarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/gametarget.cs -------------------------------------------------------------------------------- /modules/brl/native/gametarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/gametarget.java -------------------------------------------------------------------------------- /modules/brl/native/gametarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/gametarget.js -------------------------------------------------------------------------------- /modules/brl/native/httprequest.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/httprequest.android.java -------------------------------------------------------------------------------- /modules/brl/native/httprequest.flash.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/httprequest.flash.as -------------------------------------------------------------------------------- /modules/brl/native/httprequest.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/httprequest.html5.js -------------------------------------------------------------------------------- /modules/brl/native/httprequest.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/httprequest.ios.cpp -------------------------------------------------------------------------------- /modules/brl/native/httprequest.winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/httprequest.winrt.cpp -------------------------------------------------------------------------------- /modules/brl/native/monkeystore.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/monkeystore.android.java -------------------------------------------------------------------------------- /modules/brl/native/monkeystore.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/monkeystore.ios.cpp -------------------------------------------------------------------------------- /modules/brl/native/monkeystore.winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/monkeystore.winrt.cpp -------------------------------------------------------------------------------- /modules/brl/native/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/process.cpp -------------------------------------------------------------------------------- /modules/brl/native/requesters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/requesters.cpp -------------------------------------------------------------------------------- /modules/brl/native/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/socket.cpp -------------------------------------------------------------------------------- /modules/brl/native/socket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/socket.java -------------------------------------------------------------------------------- /modules/brl/native/socket_ipv6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/socket_ipv6.cpp -------------------------------------------------------------------------------- /modules/brl/native/socket_winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/socket_winrt.cpp -------------------------------------------------------------------------------- /modules/brl/native/stream.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/stream.as -------------------------------------------------------------------------------- /modules/brl/native/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/stream.cpp -------------------------------------------------------------------------------- /modules/brl/native/stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/stream.cs -------------------------------------------------------------------------------- /modules/brl/native/stream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/stream.java -------------------------------------------------------------------------------- /modules/brl/native/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/stream.js -------------------------------------------------------------------------------- /modules/brl/native/thread.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/thread.as -------------------------------------------------------------------------------- /modules/brl/native/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/thread.cpp -------------------------------------------------------------------------------- /modules/brl/native/thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/thread.cs -------------------------------------------------------------------------------- /modules/brl/native/thread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/thread.java -------------------------------------------------------------------------------- /modules/brl/native/thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/native/thread.js -------------------------------------------------------------------------------- /modules/brl/pagemaker.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/pagemaker.monkey -------------------------------------------------------------------------------- /modules/brl/pool.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/pool.monkey -------------------------------------------------------------------------------- /modules/brl/process.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/process.monkey -------------------------------------------------------------------------------- /modules/brl/requesters.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/requesters.monkey -------------------------------------------------------------------------------- /modules/brl/ringbuffer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/ringbuffer.monkey -------------------------------------------------------------------------------- /modules/brl/socket.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/socket.monkey -------------------------------------------------------------------------------- /modules/brl/stream.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/stream.monkey -------------------------------------------------------------------------------- /modules/brl/tcpstream.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/tcpstream.monkey -------------------------------------------------------------------------------- /modules/brl/thread.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/thread.monkey -------------------------------------------------------------------------------- /modules/brl/url.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/brl/url.monkey -------------------------------------------------------------------------------- /modules/dom/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/dom.js -------------------------------------------------------------------------------- /modules/dom/dom.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/dom.monkey -------------------------------------------------------------------------------- /modules/dom/gldemo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/gldemo.monkey -------------------------------------------------------------------------------- /modules/dom/mkwebgl.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/mkwebgl.monkey -------------------------------------------------------------------------------- /modules/dom/sockdemo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/sockdemo.monkey -------------------------------------------------------------------------------- /modules/dom/webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/webgl.js -------------------------------------------------------------------------------- /modules/dom/webgl.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/webgl.monkey -------------------------------------------------------------------------------- /modules/dom/webgl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/webgl.txt -------------------------------------------------------------------------------- /modules/dom/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/websocket.js -------------------------------------------------------------------------------- /modules/dom/websocket.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/dom/websocket.monkey -------------------------------------------------------------------------------- /modules/mojo/ProggyCleanSZ.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/ProggyCleanSZ.fon -------------------------------------------------------------------------------- /modules/mojo/app.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/app.monkey -------------------------------------------------------------------------------- /modules/mojo/asyncimageloader.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/asyncimageloader.monkey -------------------------------------------------------------------------------- /modules/mojo/asyncloaders.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/asyncloaders.monkey -------------------------------------------------------------------------------- /modules/mojo/asyncsoundloader.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/asyncsoundloader.monkey -------------------------------------------------------------------------------- /modules/mojo/audio.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/audio.monkey -------------------------------------------------------------------------------- /modules/mojo/audiodevice.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/audiodevice.monkey -------------------------------------------------------------------------------- /modules/mojo/data.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/data.monkey -------------------------------------------------------------------------------- /modules/mojo/data/mojo_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/data/mojo_font.png -------------------------------------------------------------------------------- /modules/mojo/driver.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/driver.monkey -------------------------------------------------------------------------------- /modules/mojo/graphics.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/graphics.monkey -------------------------------------------------------------------------------- /modules/mojo/graphicsdevice.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/graphicsdevice.monkey -------------------------------------------------------------------------------- /modules/mojo/input.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/input.monkey -------------------------------------------------------------------------------- /modules/mojo/inputdevice.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/inputdevice.monkey -------------------------------------------------------------------------------- /modules/mojo/keycodes.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/keycodes.monkey -------------------------------------------------------------------------------- /modules/mojo/makefont.bmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/makefont.bmx -------------------------------------------------------------------------------- /modules/mojo/mojo.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/mojo.monkey -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/app.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/app.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/asyncloaders.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/asyncloaders.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/audio.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/audio.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/graphics.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/graphics.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/input.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/input.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/keycodes.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/keycodes.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/monkeydoc/mojo.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/monkeydoc/mojo.monkeydoc -------------------------------------------------------------------------------- /modules/mojo/native/asyncimageloader.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/asyncimageloader.as -------------------------------------------------------------------------------- /modules/mojo/native/asyncimageloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/asyncimageloader.js -------------------------------------------------------------------------------- /modules/mojo/native/asyncsoundloader.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/asyncsoundloader.as -------------------------------------------------------------------------------- /modules/mojo/native/asyncsoundloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/asyncsoundloader.js -------------------------------------------------------------------------------- /modules/mojo/native/mojo.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.android.java -------------------------------------------------------------------------------- /modules/mojo/native/mojo.flash.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.flash.as -------------------------------------------------------------------------------- /modules/mojo/native/mojo.glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.glfw.cpp -------------------------------------------------------------------------------- /modules/mojo/native/mojo.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.html5.js -------------------------------------------------------------------------------- /modules/mojo/native/mojo.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.ios.cpp -------------------------------------------------------------------------------- /modules/mojo/native/mojo.psm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.psm.cs -------------------------------------------------------------------------------- /modules/mojo/native/mojo.winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.winrt.cpp -------------------------------------------------------------------------------- /modules/mojo/native/mojo.xna.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo/native/mojo.xna.cs -------------------------------------------------------------------------------- /modules/mojo2/bananas/bouncyaliens/bouncyaliens.data/test.txt: -------------------------------------------------------------------------------- 1 | LoadString is working! 2 | -------------------------------------------------------------------------------- /modules/mojo2/bananas/bumptest/bumptest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/bananas/bumptest/bumptest.monkey -------------------------------------------------------------------------------- /modules/mojo2/bananas/helloworld/helloworld.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/bananas/helloworld/helloworld.monkey -------------------------------------------------------------------------------- /modules/mojo2/bananas/letterbox/letterbox.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/bananas/letterbox/letterbox.monkey -------------------------------------------------------------------------------- /modules/mojo2/bananas/mojotest/mojotest.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/bananas/mojotest/mojotest.monkey -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_bumpshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_bumpshader.glsl -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_fastshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_fastshader.glsl -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_font.png -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_lightmapshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_lightmapshader.glsl -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_matteshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_matteshader.glsl -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_program.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_program.glsl -------------------------------------------------------------------------------- /modules/mojo2/data/mojo2_shadowshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/data/mojo2_shadowshader.glsl -------------------------------------------------------------------------------- /modules/mojo2/glslparser.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/glslparser.monkey -------------------------------------------------------------------------------- /modules/mojo2/glutil.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/glutil.monkey -------------------------------------------------------------------------------- /modules/mojo2/graphics.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/graphics.monkey -------------------------------------------------------------------------------- /modules/mojo2/makefont.bmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/makefont.bmx -------------------------------------------------------------------------------- /modules/mojo2/math3d.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/math3d.monkey -------------------------------------------------------------------------------- /modules/mojo2/mojo2.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/mojo2.monkey -------------------------------------------------------------------------------- /modules/mojo2/monkeydoc/geom.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/monkeydoc/geom.monkeydoc -------------------------------------------------------------------------------- /modules/mojo2/monkeydoc/graphics.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/monkeydoc/graphics.monkeydoc -------------------------------------------------------------------------------- /modules/mojo2/monkeydoc/mojo2.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/monkeydoc/mojo2.monkeydoc -------------------------------------------------------------------------------- /modules/mojo2/monkeydoc/renderer.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/monkeydoc/renderer.monkeydoc -------------------------------------------------------------------------------- /modules/mojo2/renderer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/mojo2/renderer.monkey -------------------------------------------------------------------------------- /modules/monkey/boxes.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/boxes.monkey -------------------------------------------------------------------------------- /modules/monkey/deque.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/deque.monkey -------------------------------------------------------------------------------- /modules/monkey/lang.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/lang.monkey -------------------------------------------------------------------------------- /modules/monkey/list.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/list.monkey -------------------------------------------------------------------------------- /modules/monkey/map.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/map.monkey -------------------------------------------------------------------------------- /modules/monkey/math.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/math.monkey -------------------------------------------------------------------------------- /modules/monkey/monkey.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkey.monkey -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/boxes.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/boxes.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/deque.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/deque.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/lang.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/lang.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/list.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/list.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/map.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/map.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/math.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/math.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/monkey.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/monkey.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/random.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/random.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/set.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/set.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/monkeydoc/stack.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/monkeydoc/stack.monkeydoc -------------------------------------------------------------------------------- /modules/monkey/native/lang.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/native/lang.as -------------------------------------------------------------------------------- /modules/monkey/native/lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/native/lang.cpp -------------------------------------------------------------------------------- /modules/monkey/native/lang.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/native/lang.cs -------------------------------------------------------------------------------- /modules/monkey/native/lang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/native/lang.java -------------------------------------------------------------------------------- /modules/monkey/native/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/native/lang.js -------------------------------------------------------------------------------- /modules/monkey/random.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/random.monkey -------------------------------------------------------------------------------- /modules/monkey/set.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/set.monkey -------------------------------------------------------------------------------- /modules/monkey/stack.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/monkey/stack.monkey -------------------------------------------------------------------------------- /modules/opengl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gl.h -------------------------------------------------------------------------------- /modules/opengl/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gl2.h -------------------------------------------------------------------------------- /modules/opengl/gles11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gles11.h -------------------------------------------------------------------------------- /modules/opengl/gles11.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gles11.monkey -------------------------------------------------------------------------------- /modules/opengl/gles11_src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gles11_src.txt -------------------------------------------------------------------------------- /modules/opengl/gles20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gles20.h -------------------------------------------------------------------------------- /modules/opengl/gles20.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gles20.monkey -------------------------------------------------------------------------------- /modules/opengl/gles20_src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/gles20_src.txt -------------------------------------------------------------------------------- /modules/opengl/makeglxx.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/makeglxx.monkey -------------------------------------------------------------------------------- /modules/opengl/monkeydoc/gles11.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/monkeydoc/gles11.monkeydoc -------------------------------------------------------------------------------- /modules/opengl/monkeydoc/gles20.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/monkeydoc/gles20.monkeydoc -------------------------------------------------------------------------------- /modules/opengl/monkeydoc/opengl.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/monkeydoc/opengl.monkeydoc -------------------------------------------------------------------------------- /modules/opengl/native/gles11.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles11.android.java -------------------------------------------------------------------------------- /modules/opengl/native/gles11.glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles11.glfw.cpp -------------------------------------------------------------------------------- /modules/opengl/native/gles11.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles11.ios.cpp -------------------------------------------------------------------------------- /modules/opengl/native/gles20.android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles20.android.java -------------------------------------------------------------------------------- /modules/opengl/native/gles20.angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles20.angle.cpp -------------------------------------------------------------------------------- /modules/opengl/native/gles20.glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles20.glfw.cpp -------------------------------------------------------------------------------- /modules/opengl/native/gles20.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles20.html5.js -------------------------------------------------------------------------------- /modules/opengl/native/gles20.ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles20.ios.cpp -------------------------------------------------------------------------------- /modules/opengl/native/gles20_win32_exts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/opengl/native/gles20_win32_exts.cpp -------------------------------------------------------------------------------- /modules/opengl/opengl.monkey: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/os/native/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/os/native/os.cpp -------------------------------------------------------------------------------- /modules/os/os.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/os/os.monkey -------------------------------------------------------------------------------- /modules/os/os.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/os/os.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/ArrayBoxer.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/ArrayBoxer.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/ClassInfo.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/ClassInfo.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/ConstInfo.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/ConstInfo.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/FieldInfo.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/FieldInfo.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/GlobalInfo.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/GlobalInfo.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/MethodInfo.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/MethodInfo.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/monkeydoc/reflection.monkeydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/monkeydoc/reflection.monkeydoc -------------------------------------------------------------------------------- /modules/reflection/reflection.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/reflection.monkey -------------------------------------------------------------------------------- /modules/reflection/reflector.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/reflection/reflector.monkey -------------------------------------------------------------------------------- /modules/trans/astranslator.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/astranslator.monkey -------------------------------------------------------------------------------- /modules/trans/config.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/config.monkey -------------------------------------------------------------------------------- /modules/trans/cpptranslator.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/cpptranslator.monkey -------------------------------------------------------------------------------- /modules/trans/cstranslator.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/cstranslator.monkey -------------------------------------------------------------------------------- /modules/trans/decl.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/decl.monkey -------------------------------------------------------------------------------- /modules/trans/expr.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/expr.monkey -------------------------------------------------------------------------------- /modules/trans/javatranslator.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/javatranslator.monkey -------------------------------------------------------------------------------- /modules/trans/jstranslator.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/jstranslator.monkey -------------------------------------------------------------------------------- /modules/trans/parser.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/parser.monkey -------------------------------------------------------------------------------- /modules/trans/preprocessor.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/preprocessor.monkey -------------------------------------------------------------------------------- /modules/trans/stmt.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/stmt.monkey -------------------------------------------------------------------------------- /modules/trans/toker.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/toker.monkey -------------------------------------------------------------------------------- /modules/trans/trans.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/trans.monkey -------------------------------------------------------------------------------- /modules/trans/translator.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/translator.monkey -------------------------------------------------------------------------------- /modules/trans/type.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/modules/trans/type.monkey -------------------------------------------------------------------------------- /modules_ext/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/launcher/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/launcher/info.plist -------------------------------------------------------------------------------- /src/launcher/launcher.bmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/launcher/launcher.bmx -------------------------------------------------------------------------------- /src/launcher/launcher.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/launcher/launcher.monkey -------------------------------------------------------------------------------- /src/launcher/monkey.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/launcher/monkey.icns -------------------------------------------------------------------------------- /src/launcher/monkey.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/launcher/monkey.ico -------------------------------------------------------------------------------- /src/launcher/resource.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/launcher/resource.o -------------------------------------------------------------------------------- /src/launcher/resource.rc: -------------------------------------------------------------------------------- 1 | AppIcon ICON "monkey.ico" 2 | -------------------------------------------------------------------------------- /src/makedocs/apidoccer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/apidoccer.monkey -------------------------------------------------------------------------------- /src/makedocs/docsdoccer.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/docsdoccer.monkey -------------------------------------------------------------------------------- /src/makedocs/makedocs.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/makedocs.monkey -------------------------------------------------------------------------------- /src/makedocs/modpath.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/modpath.monkey -------------------------------------------------------------------------------- /src/makedocs/parser.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/parser.monkey -------------------------------------------------------------------------------- /src/makedocs/stringutil.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/stringutil.monkey -------------------------------------------------------------------------------- /src/makedocs/toker.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/makedocs/toker.monkey -------------------------------------------------------------------------------- /src/mserver/mserver.bmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/mserver/mserver.bmx -------------------------------------------------------------------------------- /src/mserver/mserver.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/mserver/mserver.monkey -------------------------------------------------------------------------------- /src/rebuildall.bmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/rebuildall.bmx -------------------------------------------------------------------------------- /src/rebuildall.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/rebuildall.monkey -------------------------------------------------------------------------------- /src/rebuildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/rebuildall.sh -------------------------------------------------------------------------------- /src/ted/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/Info.plist -------------------------------------------------------------------------------- /src/ted/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/LICENSE.TXT -------------------------------------------------------------------------------- /src/ted/appicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/appicon.rc -------------------------------------------------------------------------------- /src/ted/codeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/codeeditor.cpp -------------------------------------------------------------------------------- /src/ted/codeeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/codeeditor.h -------------------------------------------------------------------------------- /src/ted/colorswatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/colorswatch.cpp -------------------------------------------------------------------------------- /src/ted/colorswatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/colorswatch.h -------------------------------------------------------------------------------- /src/ted/debugtreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/debugtreemodel.cpp -------------------------------------------------------------------------------- /src/ted/debugtreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/debugtreemodel.h -------------------------------------------------------------------------------- /src/ted/finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/finddialog.cpp -------------------------------------------------------------------------------- /src/ted/finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/finddialog.h -------------------------------------------------------------------------------- /src/ted/finddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/finddialog.ui -------------------------------------------------------------------------------- /src/ted/findinfilesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/findinfilesdialog.cpp -------------------------------------------------------------------------------- /src/ted/findinfilesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/findinfilesdialog.h -------------------------------------------------------------------------------- /src/ted/findinfilesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/findinfilesdialog.ui -------------------------------------------------------------------------------- /src/ted/icons/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Back.png -------------------------------------------------------------------------------- /src/ted/icons/Build-Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Build-Run.png -------------------------------------------------------------------------------- /src/ted/icons/Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Build.png -------------------------------------------------------------------------------- /src/ted/icons/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Close.png -------------------------------------------------------------------------------- /src/ted/icons/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Copy.png -------------------------------------------------------------------------------- /src/ted/icons/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Cut.png -------------------------------------------------------------------------------- /src/ted/icons/Find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Find.png -------------------------------------------------------------------------------- /src/ted/icons/Forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Forward.png -------------------------------------------------------------------------------- /src/ted/icons/Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Go.png -------------------------------------------------------------------------------- /src/ted/icons/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Home.png -------------------------------------------------------------------------------- /src/ted/icons/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/LICENSE.TXT -------------------------------------------------------------------------------- /src/ted/icons/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/New.png -------------------------------------------------------------------------------- /src/ted/icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Open.png -------------------------------------------------------------------------------- /src/ted/icons/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Paste.png -------------------------------------------------------------------------------- /src/ted/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Save.png -------------------------------------------------------------------------------- /src/ted/icons/Step-In.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Step-In.png -------------------------------------------------------------------------------- /src/ted/icons/Step-Out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Step-Out.png -------------------------------------------------------------------------------- /src/ted/icons/Step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Step.png -------------------------------------------------------------------------------- /src/ted/icons/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/icons/Stop.png -------------------------------------------------------------------------------- /src/ted/macdeployqt-4.8.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/macdeployqt-4.8.command -------------------------------------------------------------------------------- /src/ted/macdeployqt-5.5.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/macdeployqt-5.5.command -------------------------------------------------------------------------------- /src/ted/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/main.cpp -------------------------------------------------------------------------------- /src/ted/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/mainwindow.cpp -------------------------------------------------------------------------------- /src/ted/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/mainwindow.h -------------------------------------------------------------------------------- /src/ted/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/mainwindow.ui -------------------------------------------------------------------------------- /src/ted/prefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/prefs.cpp -------------------------------------------------------------------------------- /src/ted/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/prefs.h -------------------------------------------------------------------------------- /src/ted/prefsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/prefsdialog.cpp -------------------------------------------------------------------------------- /src/ted/prefsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/prefsdialog.h -------------------------------------------------------------------------------- /src/ted/prefsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/prefsdialog.ui -------------------------------------------------------------------------------- /src/ted/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/process.cpp -------------------------------------------------------------------------------- /src/ted/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/process.h -------------------------------------------------------------------------------- /src/ted/projecttreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/projecttreemodel.cpp -------------------------------------------------------------------------------- /src/ted/projecttreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/projecttreemodel.h -------------------------------------------------------------------------------- /src/ted/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/resources.qrc -------------------------------------------------------------------------------- /src/ted/std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/std.cpp -------------------------------------------------------------------------------- /src/ted/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/std.h -------------------------------------------------------------------------------- /src/ted/ted.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/ted.icns -------------------------------------------------------------------------------- /src/ted/ted.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/ted.ico -------------------------------------------------------------------------------- /src/ted/ted.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/ted/ted.pro -------------------------------------------------------------------------------- /src/transcc/builder.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builder.monkey -------------------------------------------------------------------------------- /src/transcc/builders/android.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/android.monkey -------------------------------------------------------------------------------- /src/transcc/builders/android_ndk.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/android_ndk.monkey -------------------------------------------------------------------------------- /src/transcc/builders/builders.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/builders.monkey -------------------------------------------------------------------------------- /src/transcc/builders/flash.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/flash.monkey -------------------------------------------------------------------------------- /src/transcc/builders/glfw.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/glfw.monkey -------------------------------------------------------------------------------- /src/transcc/builders/html5.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/html5.monkey -------------------------------------------------------------------------------- /src/transcc/builders/ios.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/ios.monkey -------------------------------------------------------------------------------- /src/transcc/builders/psm.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/psm.monkey -------------------------------------------------------------------------------- /src/transcc/builders/stdcpp.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/stdcpp.monkey -------------------------------------------------------------------------------- /src/transcc/builders/winrt.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/winrt.monkey -------------------------------------------------------------------------------- /src/transcc/builders/xna.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/builders/xna.monkey -------------------------------------------------------------------------------- /src/transcc/transcc.build/cpptool/CONFIG.MONKEY: -------------------------------------------------------------------------------- 1 | 2 | #CPP_DOUBLE_PRECISION_FLOATS=true 3 | -------------------------------------------------------------------------------- /src/transcc/transcc.build/cpptool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/transcc.build/cpptool/main.cpp -------------------------------------------------------------------------------- /src/transcc/transcc.build/cpptool/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/transcc.build/cpptool/main.h -------------------------------------------------------------------------------- /src/transcc/transcc.build/cpptool/main_winnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/transcc.build/cpptool/main_winnt.exe -------------------------------------------------------------------------------- /src/transcc/transcc.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/src/transcc/transcc.monkey -------------------------------------------------------------------------------- /targets/__deprecated__/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/README.TXT -------------------------------------------------------------------------------- /targets/__deprecated__/android/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/android/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/android/genkey.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/android/genkey.bat -------------------------------------------------------------------------------- /targets/__deprecated__/android/template/assets/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/android/template/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/android/template/build.xml -------------------------------------------------------------------------------- /targets/__deprecated__/android/template/libs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/android/template/res/layout/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/android_new/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/android_new/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/android_new/genkey.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/android_new/genkey.bat -------------------------------------------------------------------------------- /targets/__deprecated__/android_new/template/assets/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/android_new/template/langutil/libs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/android_new/template/libs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/android_new/template/res/layout/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/glfw/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/glfw/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/glfw/template/main.cpp -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/glfw/template/main.h -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/main.mm: -------------------------------------------------------------------------------- 1 | 2 | #include "main.cpp" 3 | -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/stb/stb_image.c: -------------------------------------------------------------------------------- 1 | 2 | #define STB_IMAGE_IMPLEMENTATION 3 | #include "stb_image.h" 4 | -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/xcode/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/xcode/data/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/xcode/external/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/glfw/template/xcode/internal/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/__deprecated__/psm/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/psm/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/psm/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/psm/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/psm/template/MonkeyGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/psm/template/MonkeyGame.cs -------------------------------------------------------------------------------- /targets/__deprecated__/psm/template/MonkeyGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/psm/template/MonkeyGame.sln -------------------------------------------------------------------------------- /targets/__deprecated__/psm/template/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/psm/template/app.xml -------------------------------------------------------------------------------- /targets/__deprecated__/xna/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/xna/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/xna/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/xna/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/__deprecated__/xna/template/MonkeyGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/__deprecated__/xna/template/MonkeyGame.sln -------------------------------------------------------------------------------- /targets/__deprecated__/xna/template/MonkeyGame/MonkeyGame/obj/Windows Phone/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /targets/__deprecated__/xna/template/MonkeyGame/MonkeyGame/obj/x86/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /targets/android/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/README.TXT -------------------------------------------------------------------------------- /targets/android/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/android/genkey.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/genkey.bat -------------------------------------------------------------------------------- /targets/android/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/android/modules/native/androidgame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/modules/native/androidgame.java -------------------------------------------------------------------------------- /targets/android/modules/native/monkeytarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/modules/native/monkeytarget.java -------------------------------------------------------------------------------- /targets/android/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/android/template/MonkeyGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/MonkeyGame.java -------------------------------------------------------------------------------- /targets/android/template/assets/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/android/template/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/build.properties -------------------------------------------------------------------------------- /targets/android/template/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/build.xml -------------------------------------------------------------------------------- /targets/android/template/langutil/LangUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/langutil/LangUtil.java -------------------------------------------------------------------------------- /targets/android/template/langutil/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/langutil/jni/Android.mk -------------------------------------------------------------------------------- /targets/android/template/langutil/jni/langutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/langutil/jni/langutil.c -------------------------------------------------------------------------------- /targets/android/template/langutil/libs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/android/template/libs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/android/template/nativegl/NativeGL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/nativegl/NativeGL.java -------------------------------------------------------------------------------- /targets/android/template/nativegl/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/nativegl/jni/Android.mk -------------------------------------------------------------------------------- /targets/android/template/nativegl/jni/nativegl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/nativegl/jni/nativegl.c -------------------------------------------------------------------------------- /targets/android/template/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/proguard.cfg -------------------------------------------------------------------------------- /targets/android/template/res/layout/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/android/template/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/res/values/strings.xml -------------------------------------------------------------------------------- /targets/android/template/templates/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android/template/templates/ant.properties -------------------------------------------------------------------------------- /targets/android_ouya/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/android_ouya/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/android_ouya/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/android_ouya/template/MonkeyGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/MonkeyGame.java -------------------------------------------------------------------------------- /targets/android_ouya/template/assets/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/android_ouya/template/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/build.properties -------------------------------------------------------------------------------- /targets/android_ouya/template/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/build.xml -------------------------------------------------------------------------------- /targets/android_ouya/template/libs/ouya-sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/libs/ouya-sdk.jar -------------------------------------------------------------------------------- /targets/android_ouya/template/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/proguard.cfg -------------------------------------------------------------------------------- /targets/android_ouya/template/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/android_ouya/template/project.properties -------------------------------------------------------------------------------- /targets/android_ouya/template/res/layout/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/cpptool/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/cpptool/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/cpptool/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- 1 | 2 | Import brl.gametarget 3 | -------------------------------------------------------------------------------- /targets/cpptool/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- 1 | 2 | #CPP_DOUBLE_PRECISION_FLOATS=true 3 | -------------------------------------------------------------------------------- /targets/cpptool/template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/cpptool/template/main.cpp -------------------------------------------------------------------------------- /targets/cpptool/template/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/cpptool/template/main.h -------------------------------------------------------------------------------- /targets/flash/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/flash/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/flash/modules/native/flashgame.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/modules/native/flashgame.as -------------------------------------------------------------------------------- /targets/flash/modules/native/monkeytarget.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/modules/native/monkeytarget.as -------------------------------------------------------------------------------- /targets/flash/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/flash/template/MonkeyGame.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/template/MonkeyGame.as -------------------------------------------------------------------------------- /targets/flash/template/MonkeyGame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/template/MonkeyGame.html -------------------------------------------------------------------------------- /targets/flash/template/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/flash/template/favicon.ico -------------------------------------------------------------------------------- /targets/glfw3/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/glfw3/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/glfw3/modules/native/glfwgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/modules/native/glfwgame.cpp -------------------------------------------------------------------------------- /targets/glfw3/modules/native/monkeytarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/modules/native/monkeytarget.cpp -------------------------------------------------------------------------------- /targets/glfw3/modules/native/oggloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/modules/native/oggloader.cpp -------------------------------------------------------------------------------- /targets/glfw3/modules/native/wavloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/modules/native/wavloader.cpp -------------------------------------------------------------------------------- /targets/glfw3/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/glfw3/template/gcc_linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/gcc_linux/Makefile -------------------------------------------------------------------------------- /targets/glfw3/template/gcc_winnt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/gcc_winnt/Makefile -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/COPYING.txt -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/EGL/eglext.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/GL/glext.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/GL/glxext.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/GL/wglext.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/getopt.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/getopt.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/glad.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/glad/glad.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/tinycthread.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/deps/tinycthread.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/CMakeLists.txt -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/cocoa_init.m -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/cocoa_monitor.m -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/cocoa_platform.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/cocoa_window.m -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/context.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/egl_context.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/egl_context.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/glfw3.pc.in -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/glfw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/glfw_config.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/glfw_config.h.in -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/glx_context.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/glx_context.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/init.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/input.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/internal.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/iokit_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/iokit_joystick.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/iokit_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/iokit_joystick.m -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/linux_joystick.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/linux_joystick.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/mach_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/mach_time.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/mir_init.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/mir_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/mir_monitor.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/mir_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/mir_platform.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/mir_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/mir_window.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/monitor.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/nsgl_context.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/nsgl_context.m -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/posix_time.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/posix_time.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/posix_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/posix_tls.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/posix_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/posix_tls.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/wgl_context.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/wgl_context.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_init.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_monitor.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_platform.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_time.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_tls.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_tls.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/win32_window.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/window.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/winmm_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/winmm_joystick.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/winmm_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/winmm_joystick.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/wl_init.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/wl_monitor.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/wl_platform.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/wl_window.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/x11_init.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/x11_monitor.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/x11_platform.h -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/x11_window.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/xkb_unicode.c -------------------------------------------------------------------------------- /targets/glfw3/template/glfw3/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/glfw3/src/xkb_unicode.h -------------------------------------------------------------------------------- /targets/glfw3/template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/main.cpp -------------------------------------------------------------------------------- /targets/glfw3/template/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/main.h -------------------------------------------------------------------------------- /targets/glfw3/template/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/main.mm -------------------------------------------------------------------------------- /targets/glfw3/template/msvc/MonkeyGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/msvc/MonkeyGame.sln -------------------------------------------------------------------------------- /targets/glfw3/template/msvc/MonkeyGame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/msvc/MonkeyGame.vcxproj -------------------------------------------------------------------------------- /targets/glfw3/template/openal/include/EFX-Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/openal/include/EFX-Util.h -------------------------------------------------------------------------------- /targets/glfw3/template/openal/include/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/openal/include/al.h -------------------------------------------------------------------------------- /targets/glfw3/template/openal/include/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/openal/include/alc.h -------------------------------------------------------------------------------- /targets/glfw3/template/openal/include/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/openal/include/efx.h -------------------------------------------------------------------------------- /targets/glfw3/template/openal/include/xram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/openal/include/xram.h -------------------------------------------------------------------------------- /targets/glfw3/template/stb/stb_image.c: -------------------------------------------------------------------------------- 1 | 2 | #define STB_IMAGE_IMPLEMENTATION 3 | #include "stb_image.h" 4 | -------------------------------------------------------------------------------- /targets/glfw3/template/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/stb/stb_image.h -------------------------------------------------------------------------------- /targets/glfw3/template/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/stb/stb_vorbis.c -------------------------------------------------------------------------------- /targets/glfw3/template/xcode/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /targets/glfw3/template/xcode/MonkeyGame-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/xcode/MonkeyGame-Info.plist -------------------------------------------------------------------------------- /targets/glfw3/template/xcode/MonkeyGame_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3/template/xcode/MonkeyGame_Prefix.pch -------------------------------------------------------------------------------- /targets/glfw3/template/xcode/data/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/glfw3/template/xcode/external/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/glfw3/template/xcode/internal/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/glfw3_angle/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/glfw3_angle/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/glfw3_angle/modules/native/glfwgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/modules/native/glfwgame.cpp -------------------------------------------------------------------------------- /targets/glfw3_angle/modules/native/oggloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/modules/native/oggloader.cpp -------------------------------------------------------------------------------- /targets/glfw3_angle/modules/native/wavloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/modules/native/wavloader.cpp -------------------------------------------------------------------------------- /targets/glfw3_angle/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/glfw3_angle/template/angle/bin/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/angle/bin/libEGL.dll -------------------------------------------------------------------------------- /targets/glfw3_angle/template/angle/lib/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/angle/lib/libEGL.lib -------------------------------------------------------------------------------- /targets/glfw3_angle/template/gcc_winnt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/gcc_winnt/Makefile -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/COPYING.txt -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/deps/GL/glext.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/deps/getopt.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/deps/getopt.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/deps/glad.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/context.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/glfw3.pc.in -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/init.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/input.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/internal.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/mach_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/mach_time.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/mir_init.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/monitor.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/posix_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/posix_tls.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/posix_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/posix_tls.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/win32_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/win32_tls.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/win32_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/win32_tls.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/window.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/wl_init.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/wl_window.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/glfw3/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/glfw3/src/x11_init.c -------------------------------------------------------------------------------- /targets/glfw3_angle/template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/main.cpp -------------------------------------------------------------------------------- /targets/glfw3_angle/template/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/main.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/msvc/MonkeyGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/msvc/MonkeyGame.sln -------------------------------------------------------------------------------- /targets/glfw3_angle/template/openal/include/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/openal/include/al.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/openal/include/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/openal/include/alc.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/openal/include/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/openal/include/efx.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/openal/include/xram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/openal/include/xram.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/stb/stb_image.c: -------------------------------------------------------------------------------- 1 | 2 | #define STB_IMAGE_IMPLEMENTATION 3 | #include "stb_image.h" 4 | -------------------------------------------------------------------------------- /targets/glfw3_angle/template/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/stb/stb_image.h -------------------------------------------------------------------------------- /targets/glfw3_angle/template/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/glfw3_angle/template/stb/stb_vorbis.c -------------------------------------------------------------------------------- /targets/html5/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/html5/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/html5/modules/native/html5game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/modules/native/html5game.js -------------------------------------------------------------------------------- /targets/html5/modules/native/monkeytarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/modules/native/monkeytarget.js -------------------------------------------------------------------------------- /targets/html5/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/html5/template/MonkeyGame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/template/MonkeyGame.html -------------------------------------------------------------------------------- /targets/html5/template/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/template/favicon.ico -------------------------------------------------------------------------------- /targets/html5/template/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/html5/template/main.js -------------------------------------------------------------------------------- /targets/ios/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/ios/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/ios/modules/native/iosgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/modules/native/iosgame.cpp -------------------------------------------------------------------------------- /targets/ios/modules/native/monkeytarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/modules/native/monkeytarget.cpp -------------------------------------------------------------------------------- /targets/ios/modules/native/wavloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/modules/native/wavloader.cpp -------------------------------------------------------------------------------- /targets/ios/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/ios/template/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/template/MainWindow.xib -------------------------------------------------------------------------------- /targets/ios/template/MonkeyGame-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/template/MonkeyGame-Info.plist -------------------------------------------------------------------------------- /targets/ios/template/MonkeyGame_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/template/MonkeyGame_Prefix.pch -------------------------------------------------------------------------------- /targets/ios/template/data/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/ios/template/libs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /targets/ios/template/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/template/main.h -------------------------------------------------------------------------------- /targets/ios/template/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/ios/template/main.mm -------------------------------------------------------------------------------- /targets/winrt_win8/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/winrt_win8/modules/monkeytarget.monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/modules/monkeytarget.monkey -------------------------------------------------------------------------------- /targets/winrt_win8/modules/native/monkeytarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/modules/native/monkeytarget.cpp -------------------------------------------------------------------------------- /targets/winrt_win8/modules/native/winrtgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/modules/native/winrtgame.cpp -------------------------------------------------------------------------------- /targets/winrt_win8/template/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/App.xaml -------------------------------------------------------------------------------- /targets/winrt_win8/template/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/App.xaml.cs -------------------------------------------------------------------------------- /targets/winrt_win8/template/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/Assets/Logo.png -------------------------------------------------------------------------------- /targets/winrt_win8/template/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/Assets/SmallLogo.png -------------------------------------------------------------------------------- /targets/winrt_win8/template/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/Assets/StoreLogo.png -------------------------------------------------------------------------------- /targets/winrt_win8/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/winrt_win8/template/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/MainPage.xaml -------------------------------------------------------------------------------- /targets/winrt_win8/template/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/MainPage.xaml.cs -------------------------------------------------------------------------------- /targets/winrt_win8/template/MonkeyGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/MonkeyGame.cpp -------------------------------------------------------------------------------- /targets/winrt_win8/template/MonkeyGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/MonkeyGame.csproj -------------------------------------------------------------------------------- /targets/winrt_win8/template/MonkeyGame.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/MonkeyGame.csproj.user -------------------------------------------------------------------------------- /targets/winrt_win8/template/MonkeyGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/MonkeyGame.sln -------------------------------------------------------------------------------- /targets/winrt_win8/template/NativeGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/NativeGame.cpp -------------------------------------------------------------------------------- /targets/winrt_win8/template/NativeGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/NativeGame.h -------------------------------------------------------------------------------- /targets/winrt_win8/template/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/Package.appxmanifest -------------------------------------------------------------------------------- /targets/winrt_win8/template/SimplePixelShader.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/SimplePixelShader.hlsl -------------------------------------------------------------------------------- /targets/winrt_win8/template/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/pch.cpp -------------------------------------------------------------------------------- /targets/winrt_win8/template/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_win8/template/pch.h -------------------------------------------------------------------------------- /targets/winrt_winphone8/TARGET.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/TARGET.MONKEY -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/App.xaml -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/App.xaml.cs -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/CONFIG.MONKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/CONFIG.MONKEY -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/MainPage.xaml -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/MainPage.xaml.cs -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/MonkeyGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/MonkeyGame.cpp -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/MonkeyGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/MonkeyGame.csproj -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/MonkeyGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/MonkeyGame.sln -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/pch.cpp -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/pch.h -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/stb/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/stb/stb_image.c -------------------------------------------------------------------------------- /targets/winrt_winphone8/template/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blitz-research/monkey/HEAD/targets/winrt_winphone8/template/stb/stb_vorbis.c --------------------------------------------------------------------------------