mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
22 lines
278 B
C++
22 lines
278 B
C++
#pragma once
|
|
#include "Mobs.h"
|
|
|
|
#include <Godot.hpp>
|
|
#include <KinematicBody2D.hpp>
|
|
|
|
class Player :
|
|
public Mobs
|
|
{
|
|
// Godot structure
|
|
private:
|
|
GODOT_CLASS(Player, KinematicBody2D)
|
|
|
|
public:
|
|
void static _register_methods();
|
|
void _process(float delta);
|
|
|
|
public:
|
|
Player();
|
|
};
|
|
|