mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
19 lines
331 B
C++
19 lines
331 B
C++
//
|
|
// AgentData.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 2/19/13.
|
|
//
|
|
//
|
|
|
|
#ifndef hifi_AgentData_h
|
|
#define hifi_AgentData_h
|
|
|
|
class AgentData {
|
|
public:
|
|
virtual ~AgentData() = 0;
|
|
virtual int parseData(unsigned char* sourceBuffer, int numBytes) = 0;
|
|
virtual AgentData* clone() const = 0;
|
|
};
|
|
|
|
#endif
|