#ifndef DEF_XELEMENT_H
#define DEF_XELEMENT_H
#include "SDL.h"
struct xDrawable {
virtual void draw(SDL_Renderer* renderer) = 0;
};
#endif