blob: 5925660dd34532c2dad6b5b5aeed41a6b4a8b7e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -------------------------------------------
Copyright Mahrouss Logic
File: Dim2d.cpp
Purpose:
Revision History:
31/01/24: Added file (amlel)
------------------------------------------- */
#include <System.Graphics/Dim2d.hxx>
namespace System::Graphics {
HCore::UInt& Dim2d::X() { return m_X; }
HCore::UInt& Dim2d::Y() { return m_Y; }
} // namespace System::Graphics
|