Overte C++ Documentation
graphics/src/graphics/Forward.h
1 //
2 // Forward.h
3 // libraries/graphics/src/graphics
4 //
5 // Created by Bradley Austin Davis on 2017/06/21
6 // Copyright 2013-2017 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 #ifndef hifi_model_Forward_h
12 #define hifi_model_Forward_h
13 
14 namespace graphics {
15  class Mesh;
16  using MeshPointer = std::shared_ptr<Mesh>;
17 }
18 
19 #endif