mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 14:43:39 +00:00
10 lines
104 B
C++
10 lines
104 B
C++
#pragma once
|
|
|
|
#include "Creature.h"
|
|
|
|
class Level;
|
|
|
|
class Npc : public Creature {
|
|
public:
|
|
Npc() {}
|
|
}; |