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.
11 lines
168 B
11 lines
168 B
1 year ago
|
#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();
|
||
|
};
|