forked from Tr0n/client
Solution refactoring and restructuring, removed Boost dependency, removed unused tools
This commit is contained in:
12
src/UserInterface/AbstractChat.h
Normal file
12
src/UserInterface/AbstractChat.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "AbstractSingleton.h"
|
||||
|
||||
class IAbstractChat : public TAbstractSingleton<IAbstractChat>
|
||||
{
|
||||
public:
|
||||
IAbstractChat() {}
|
||||
virtual ~IAbstractChat() {}
|
||||
|
||||
virtual void AppendChat(int iType, const char * c_szChat) = 0;
|
||||
};
|
Reference in New Issue
Block a user