16 lines
167 B
C
16 lines
167 B
C
#pragma once
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#ifndef STRUCT_H
|
|
#define STRUCT_H
|
|
|
|
//Estructura para definir un circulo
|
|
struct Circle
|
|
{
|
|
Uint16 x;
|
|
Uint16 y;
|
|
Uint8 r;
|
|
};
|
|
|
|
#endif |