added radio's logo, started NPCManager

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

View File

@ -1,4 +1,4 @@
# OpenFusion
![](res/radiorave_logo.png)
OpenFusion is a landwalker server for FusionFall. It currently supports versions `beta-20100104` and `beta-20100728` of the original game.

BIN
res/radiorave_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

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