// // VoxelNodeData.h // assignment-client/src/voxels // // Created by Stephen Birarda on 3/21/13. // Copyright 2014 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #ifndef hifi_VoxelNodeData_h #define hifi_VoxelNodeData_h #include #include "../octree/OctreeQueryNode.h" class VoxelNodeData : public OctreeQueryNode { public: VoxelNodeData() : OctreeQueryNode() { }; virtual PacketType getMyPacketType() const { return PacketTypeVoxelData; } }; #endif // hifi_VoxelNodeData_h