12 lines
239 B
C
12 lines
239 B
C
|
#pragma once
|
||
|
|
||
|
#include "AbstractSingleton.h"
|
||
|
|
||
|
class IAbstractChat : public TAbstractSingleton<IAbstractChat>
|
||
|
{
|
||
|
public:
|
||
|
IAbstractChat() {}
|
||
|
virtual ~IAbstractChat() {}
|
||
|
|
||
|
virtual void AppendChat(int iType, const char * c_szChat) = 0;
|
||
|
};
|