mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
15 lines
176 B
C++
15 lines
176 B
C++
#include "Player.h"
|
|
|
|
void Player::_register_methods()
|
|
{
|
|
register_method((char*)"_process", &Player::_process);
|
|
}
|
|
|
|
void Player::_process(float delta)
|
|
{
|
|
}
|
|
|
|
Player::Player()
|
|
{
|
|
}
|