10 lines
90 B
C++
10 lines
90 B
C++
|
|
#include "Player.h"
|
|
|
|
Player::Player()
|
|
{
|
|
x = 0.0;
|
|
y = 0.0;
|
|
direction = 0.0;
|
|
}
|