mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
8ceabadcde
Including return world and what activity ID to use for rewards
20 lines
416 B
C++
20 lines
416 B
C++
/*
|
|
* Darkflame Universe
|
|
* Copyright 2018
|
|
*/
|
|
|
|
#ifndef SLASHCOMMANDHANDLER_H
|
|
#define SLASHCOMMANDHANDLER_H
|
|
|
|
#include "RakNetTypes.h"
|
|
#include <string>
|
|
|
|
class Entity;
|
|
|
|
namespace SlashCommandHandler {
|
|
void HandleChatCommand(const std::u16string& command, Entity* entity, const SystemAddress& sysAddr);
|
|
void SendAnnouncement(const std::string& title, const std::string& message);
|
|
};
|
|
|
|
#endif // SLASHCOMMANDHANDLER_H
|