dungeonanddeamon/DungeonAndDeamonScript/DungeonAndDemaonScript/Player.h
2020-03-25 11:00:23 +01:00

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();
};