mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
16 lines
232 B
C++
16 lines
232 B
C++
#ifndef SIZE_H_
|
|
#define SIZE_H_
|
|
|
|
namespace Engine
|
|
{
|
|
struct Size
|
|
{
|
|
unsigned int Width, Height;
|
|
Size(unsigned int width, unsigned int height)
|
|
: Width(width), Height(height)
|
|
{ }
|
|
~Size(void) { }
|
|
};
|
|
}
|
|
|
|
#endif |