This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static SDL_Color palette[] = { | |
{ 0, 0, 0, 255 }, | |
{ 29, 43, 83, 255 }, | |
{ 126, 37, 83, 255 }, | |
{ 0, 135, 81, 255 }, | |
{ 171, 82, 54, 255 }, | |
{ 95, 87, 79, 255 }, | |
{ 194, 195, 199, 255 }, | |
{ 255, 241, 232, 255 }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static SDL_Color palette[] = { | |
{ 0, 0, 0, 255 }, | |
{ 29, 43, 83, 255 }, | |
{ 126, 37, 83, 255 }, | |
{ 0, 135, 81, 255 }, | |
{ 171, 82, 54, 255 }, | |
{ 95, 87, 79, 255 }, | |
{ 194, 195, 199, 255 }, | |
{ 255, 241, 232, 255 }, | |
{ 255, 0, 77, 255 }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-- corrupted space | |
-- by @egordorichev | |
cartdata("ldjam42") | |
menuitem(1,"restart lvl",function() | |
if(state==menu) return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-- main | |
-- todo | |
-- music | |
-- sfx | |
-- fx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- spacy adventure | |
-- by @egordorichev | |
-- | |
-- main callbacks | |
-- | |
cartdata("ld39") | |
t=1 | |
dmg=5 |