Logo
Rectangle.h
1#pragma once
2
3namespace XXSharpKmyMath
4{
5 private value class Rectangle
6 {
7 public:
8 float x, y, height, width;
9 Rectangle(float _x, float _y, float _w, float _h)
10 {
11 x = _x;
12 y = _y;
13 height = _h;
14 width = _w;
15 }
16 };
17}