Fix Sindri header
parent
c041fca1ae
commit
0e0a21e00d
@ -0,0 +1,33 @@
|
||||
// Copyright (c) 4lexKidd
|
||||
// This software is licensed under the GPL v3 as to be fitting with the rathena project with the additional requirement
|
||||
// that any distributed versions must include an attribution to the original author (4lexKidd) in all copies
|
||||
// or substantial portions of the software.
|
||||
|
||||
#ifndef SINDRI_HPP
|
||||
#define SINDRI_HPP
|
||||
|
||||
#include <common/cbasetypes.hpp>
|
||||
#include <common/core.hpp>
|
||||
#include <common/mmo.hpp> // NAME_LENGTH,SEX_*
|
||||
#include <common/timer.hpp>
|
||||
#include <config/core.hpp>
|
||||
|
||||
using rathena::server_core::Core;
|
||||
using rathena::server_core::e_core_type;
|
||||
|
||||
namespace rathena {
|
||||
namespace server_sindri {
|
||||
class SindriServer : public Core {
|
||||
protected:
|
||||
bool initialize(int argc, char* argv[]) override;
|
||||
void finalize() override;
|
||||
void handle_shutdown() override;
|
||||
|
||||
public:
|
||||
SindriServer() : Core(e_core_type::SINDRI) {
|
||||
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
#endif /* SINDRI_HPP */
|
Loading…
Reference in New Issue