mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
Let's code
This commit is contained in:
14
DungeonAndDeamonScript/DungeonAndDemaonScript/Player.cpp
Normal file
14
DungeonAndDeamonScript/DungeonAndDemaonScript/Player.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
#include "Player.h"
|
||||
|
||||
void Player::_register_methods()
|
||||
{
|
||||
register_method((char*)"_process", &Player::_process);
|
||||
}
|
||||
|
||||
void Player::_process(float delta)
|
||||
{
|
||||
}
|
||||
|
||||
Player::Player()
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user