11 lines
168 B
C
Raw Normal View History

#pragma once
#include "olcPixelGameEngine.h"
struct Rect{
private:
int x,y,w,h;
public:
Rect(int x,int y,int w, int h);
olc::vi2d GetPos();
olc::vi2d GetSize();
};