11 lines
145 B
C
11 lines
145 B
C
#ifndef DIRECTION_H
|
|
#define DIRECTION_H
|
|
|
|
struct Direction
|
|
{
|
|
Direction(float x = 0.0f, float y = 0.0f) : x(x), y(y) {}
|
|
|
|
float x, y;
|
|
};
|
|
|
|
#endif |