mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 21:39:40 +02:00
18 lines
266 B
C++
18 lines
266 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 void parseData(void * data, int size) = 0;
|
|
};
|
|
|
|
#endif
|