LibD/src/Actor/NPC.cpp
2012-04-17 20:23:48 +03:00

19 lines
217 B
C++

#include "NPC.h"
NPC::NPC(const Level* level) : Actor(level) {
}
NPC::~NPC(void) {
}
void NPC::Update(float dt) {
Actor::Update(dt);
}
void NPC::Render(void) {
Actor::Render();
}
void NPC::Move(float dt) {
}