https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 68a98bb2aa9d7a2e48793f0b12c7388311196273 authored by a1ex on 17 March 2014, 21:43:46 UTC
Minor tweaks to clock script
Tip revision: 68a98bb
arkanoid.h
#ifndef _arkanoid_h_
#define _arkanoid_h_

typedef struct
{
    int type;
    
    float x;
    float y;
    int z;
    
    int w;
    int h;
    
    float deltaX;
    float deltaY;
    float speed;
    
    int color;
    
    int fade;
    int fade_delta;
    
    int c1;
} element;

#endif
back to top