6 lines
57 B
C++
6 lines
57 B
C++
#pragma once
|
|
|
|
struct Position {
|
|
float x;
|
|
float y;
|
|
};
|