Removed some deprecated classes.

This commit is contained in:
Relintai 2019-12-01 20:30:48 +01:00
parent 964110c125
commit 3fe142e704
4 changed files with 0 additions and 97 deletions

View File

@ -1,12 +0,0 @@
#include "mob.h"
Mob::Mob() : Entity() {
}
void Mob::_bind_methods() {
}

View File

@ -1,22 +0,0 @@
#ifndef MOB_H
#define MOB_H
#include "entity.h"
#include "../entity_enums.h"
class Mob : public Entity {
GDCLASS(Mob, Entity);
public:
Mob();
protected:
static void _bind_methods();
private:
};
#endif

View File

@ -1,28 +0,0 @@
#include "player.h"
#include "../inventory/bag.h"
//Ref<InputProfile> Player::get_input_profile() {
// return _input_profile;
//}
Player::Player() {
//_input_profile = Ref<InputProfile>(memnew(InputProfile()));
}
Player::~Player() {
//_input_profile.unref();
}
void Player::_bind_methods() {
//ClassDB::bind_method(D_METHOD("get_input_profile"), &Player::get_input_profile);
}

View File

@ -1,35 +0,0 @@
#ifndef PLAYER_H
#define PLAYER_H
#include "entity.h"
class Bag;
class Player : public Entity {
GDCLASS(Player, Entity);
public:
//// Profiles ////
//Ref<InputProfile> get_input_profile();
void _setup();
Player();
~Player();
protected:
static void _bind_methods();
private:
//Ref<InputProfile> _input_profile;
};
#endif