added radio's logo, started NPCManager

This commit is contained in:
2020-08-19 17:21:35 -05:00
parent a0d59419f1
commit 4d9072a752
4 changed files with 20 additions and 1 deletions

5
src/NPCManager.cpp Normal file
View File

@@ -0,0 +1,5 @@
#include "NPCManager.hpp"
void NPCManager::init() {
}

14
src/NPCManager.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef _NPCMANAGER_HPP
#define _NPCMANAGER_HPP
#include "CNProtocol.hpp"
#include <map>
namespace NPCManager {
void init();
}
#endif