mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 16:50:43 +02:00
29 lines
584 B
C++
29 lines
584 B
C++
//
|
|
// VoxelAgentData.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 3/21/13.
|
|
//
|
|
//
|
|
|
|
#ifndef __hifi__VoxelAgentData__
|
|
#define __hifi__VoxelAgentData__
|
|
|
|
#include <iostream>
|
|
#include <AgentData.h>
|
|
#include "MarkerNode.h"
|
|
|
|
class VoxelAgentData : public AgentData {
|
|
public:
|
|
float position[3];
|
|
MarkerNode *rootMarkerNode;
|
|
|
|
VoxelAgentData();
|
|
~VoxelAgentData();
|
|
VoxelAgentData(const VoxelAgentData &otherAgentData);
|
|
|
|
void parseData(unsigned char* sourceBuffer, int numBytes);
|
|
VoxelAgentData* clone() const;
|
|
};
|
|
|
|
#endif /* defined(__hifi__VoxelAgentData__) */
|