21 lines
276 B
C++
21 lines
276 B
C++
/*
|
|
* tfmm.hpp
|
|
*
|
|
* Created on: Dec 7, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace tfmm
|
|
{
|
|
|
|
void startQueue();
|
|
void startQueueStandby();
|
|
void leaveQueue();
|
|
void disconnectAndAbandon();
|
|
void abandon();
|
|
bool isMMBanned();
|
|
int getQueue();
|
|
} // namespace tfmm
|