Cafu Engine
ElementTypes.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_MODELEDITOR_ELEMENT_TYPES_HPP_INCLUDED
8 #define CAFU_MODELEDITOR_ELEMENT_TYPES_HPP_INCLUDED
9 
10 
11 namespace ModelEditor
12 {
13  /// Enumerates the types of the elements that a model is composed of.
14  enum ModelElementTypeT
15  {
16  JOINT=0,
17  MESH =1,
18  SKIN =2,
19  GFIX =3,
20  ANIM =4,
21  CHAN =5
22  };
23 }
24 
25 #endif