mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-04-19 21:33:15 +02:00
Removed some deprecated classes.
This commit is contained in:
parent
964110c125
commit
3fe142e704
@ -1,12 +0,0 @@
|
||||
#include "mob.h"
|
||||
|
||||
|
||||
|
||||
Mob::Mob() : Entity() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
void Mob::_bind_methods() {
|
||||
|
||||
}
|
@ -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
|
@ -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);
|
||||
}
|
@ -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
|
Loading…
Reference in New Issue
Block a user