#pragma once #include "Mobs.h" #include #include class Player : public Mobs { // Godot structure private: GODOT_CLASS(Player, KinematicBody2D) public: void static _register_methods(); void _process(float delta); public: Player(); };