https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 58fc1392539c7d8e39ff10c6401ad44c65b1c3a3 authored by a1ex on 20 January 2014, 17:57:19 UTC
Close branch 50d
Tip revision: 58fc139
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