10 lines
100 B
C
10 lines
100 B
C
#pragma once
|
|
|
|
struct Rectangle
|
|
{
|
|
int32 X;
|
|
int32 Y;
|
|
int32 Width;
|
|
int32 Height;
|
|
};
|