#!/usr/bin/python

import sys;sys.path.append('../cuzcode/stuff')

import cuz_build
from cuz_build import *
parse_args()

DATA = {
    'atlas1':Atlas('atlas1.png',{'img1':'test1.png','img2':'test2.png'},scale=1,pad=1),
    'img3':Image('tex1-out.png',pick('test3.png',android='test1.png',iphone='test2.png')),
    'img4':Texture('test4.png','test4.png'),
    'font1':Font('font.png','font.ttf',30,border=2),
    'death':Sound('death-out.wav','test.wav'),
    'theme':Sound('theme-out.ogg','test.wav','/usr/bin/oggenc $SRC -o $DEST'),
}

main(DATA)