mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
22 lines
180 B
C
22 lines
180 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "Common.h"
|
||
|
|
||
|
NS_BF_BEGIN;
|
||
|
|
||
|
class Point2D
|
||
|
{
|
||
|
public:
|
||
|
float mX;
|
||
|
float mY;
|
||
|
|
||
|
public:
|
||
|
Point2D(float x = 0, float y = 0)
|
||
|
{
|
||
|
mX = x;
|
||
|
mY = y;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
NS_BF_END;
|