Particle_Simulator/Cpp_Stuff/include/ui_particles.hpp

18 lines
416 B
C++
Raw Normal View History

2024-11-23 21:59:28 -05:00
#include <SDL2/SDL.h>
enum Color {blue, green, red, yellow};
class ui_particles
{
private:
SDL_Surface *bitmapSurface = NULL;
SDL_Texture * bitmapTexture = NULL;
SDL_Rect Rectangle;
SDL_Renderer *renderer;
public:
ui_particles(Color color, SDL_Renderer *in_renderer);
~ui_particles();
void set_location(float x, float y);
void draw(void);
};