Files
Juliet/Juliet/include/Core/Math/Shape.h

12 lines
145 B
C++

#pragma once
namespace Juliet
{
struct Rectangle
{
int32 X;
int32 Y;
int32 Width;
int32 Height;
};
}