https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 06b3bb79ef80342b74e8548d07472f8e68a85b0f authored by danne on 02 February 2017, 20:26:43 UTC
blacks out
Tip revision: 06b3bb7
arkanoid.h
#ifndef _arkanoid_h_
#define _arkanoid_h_

typedef struct element
{
    int type;
    
    float x;
    float old_x;
    float y;
    float old_y;
    
    int w;
    int h;
    
    float deltaX;
    float deltaY;
    float speed;
    
    int color;
    
    int fade;
    int fade_delta;
    
    int c1;
    int deleted;
	
    struct element * next;
    struct element * prev;
} element;

#endif
back to top