Copiado el tutorial 5 de Jailgames Vintage en YouTube, pero algo sigue fallando
This commit is contained in:
19
game.cpp
Normal file
19
game.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "jUnit.h"
|
||||
|
||||
void init()
|
||||
{
|
||||
jInit("pixels", 320, 240, 2);
|
||||
jSetPal(0, 0x00000000);
|
||||
jSetPal(1, 0xffff0000);
|
||||
jSetPal(2, 0xffffffff);
|
||||
jCls(0);
|
||||
jSurface peiv = jLoadSurface("williams.gif");
|
||||
jLoadPal("williams.gif");
|
||||
jSetSource(peiv);
|
||||
}
|
||||
|
||||
void update()
|
||||
{
|
||||
jCls(0);
|
||||
jBlit(0, 0, 0, 0, 29, 64);
|
||||
}
|
||||
Reference in New Issue
Block a user