Skip to content

Instantly share code, notes, and snippets.

@po8rewq
Last active August 19, 2016 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save po8rewq/47e7d37d28bf3f34fe864c82b60674ce to your computer and use it in GitHub Desktop.
Save po8rewq/47e7d37d28bf3f34fe864c82b60674ce to your computer and use it in GitHub Desktop.
Empty haxe / pico-8 project
-js game.p8hx
-main Main
-lib hxpico8
--macro p8gen.PgMain.use()
-dce full
pico-8 cartridge // http://www.pico-8.com
version 5
__lua__
__gfx__
package ;
import Pico.*;
class Main
{
static function main()
{
onInit = init;
onUpdate = update;
onDraw = draw;
}
static function init()
{
}
static function draw()
{
cls();
}
static function update()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment