mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 22:10:25 +02:00
25 lines
634 B
C++
25 lines
634 B
C++
//
|
|
// 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 <PacketHeaders.h>
|
|
|
|
#include "../octree/OctreeQueryNode.h"
|
|
|
|
class VoxelNodeData : public OctreeQueryNode {
|
|
public:
|
|
VoxelNodeData() : OctreeQueryNode() { };
|
|
virtual PacketType getMyPacketType() const { return PacketTypeVoxelData; }
|
|
};
|
|
|
|
#endif // hifi_VoxelNodeData_h
|