You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
357 B

#ifndef __RECT_H
#define __RECT_H
#include <SDL.h>
namespace segl {
class Rect {
public:
float x, y;
float w, h;
Rect();
Rect(float, float, float, float);
Rect(const SDL_Rect&);
void set(float, float, float, float);
void setPoint(float, float);
void setDim(float, float);
SDL_Rect getSDLRect();
};
} // namespace segl
#endif