mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
b5590dd5d9
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@144 67975925-1194-0748-b3d5-c16f83f1a3a1
19 lines
443 B
C++
19 lines
443 B
C++
#ifndef AVH_PARTICLETEMPLATECLIENT_H
|
|
#define AVH_PARTICLETEMPLATECLIENT_H
|
|
|
|
#include "mod/AvHParticleTemplate.h"
|
|
|
|
class AvHParticleTemplateListClient : public AvHParticleTemplateList
|
|
{
|
|
public:
|
|
int InitializeDemoPlayback(int inSize, unsigned char* inBuffer);
|
|
void InitializeDemoRecording() const;
|
|
|
|
// Clears out the templates and receives all new ones
|
|
int32 ReceiveFromNetworkStream();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|