#pragma once #ifndef STRUCT_H #define STRUCT_H //Estructura para definir un circulo struct Circle { Uint16 x; Uint16 y; Uint8 r; }; #endif