====== Hello World ======
HelloWorld.gee
///////////////////////////////////////////////////////////////////////////
BEGIN database MAIN
///////////////////////////////////////////////////////////////////////////
ATOMS Flags = INSTALL
ATOMS Compression = int char atom float dictionary huffman rle
INTEGER Cluster = 4096
END
///////////////////////////////////////////////////////////////////////////
BEGIN settings VISUAL
///////////////////////////////////////////////////////////////////////////
INTEGER ScreenX = 400
INTEGER ScreenY = 500
END
HelloWorld/Object/HelloWorld.gee
///////////////////////////////////////////////////////////////////////////
BEGIN game GAME
///////////////////////////////////////////////////////////////////////////
OBJECT Scripta = HelloWorld
END
///////////////////////////////////////////////////////////////////////////
branch init()
///////////////////////////////////////////////////////////////////////////
rendLoadTextureLibrary ( 'System' )
INSTANCE $.font = rendGetTexture( 'CourierTiny' )
end
///////////////////////////////////////////////////////////////////////////
branch render()
///////////////////////////////////////////////////////////////////////////
rendClear ( rendColor(0,0,0,0) )
rendSetBlending ( 'add' )
rendSetTexture ( font )
rendText ( 10 , 10 , 'Hello_World' )
end
HelloWorld/String/HelloWorld.txt
#Hello_World
Hello World!
#