19 lines
276 B
C++
Executable File
19 lines
276 B
C++
Executable File
/*
|
|
* votelogger.hpp
|
|
*
|
|
* Created on: Dec 31, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "string"
|
|
class bf_read;
|
|
|
|
namespace votelogger
|
|
{
|
|
|
|
void dispatchUserMessage(bf_read &buffer, int type);
|
|
void onShutdown(std::string message);
|
|
} // namespace votelogger
|