/****************************************************************************** libx42.net - skinned vertex animation library (.NET API) Copyright (C) 2007 HermitWorks Entertainment Corporation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA. ******************************************************************************/ #pragma once namespace Libx42 { public enum class PrimitiveType { PointList = X42_PT_POINT_LIST, LineList = X42_PT_LINE_LIST, LineStrip = X42_PT_LINE_STRIP, TriangleList = X42_PT_TRIANGLE_LIST, TriangleStrip = X42_PT_TRIANGLE_STRIP, TriangleFan = X42_PT_TRIANGLE_FAN, }; [Flags] public enum class AnimationFlags { None = 0, IncludeNormals = 1, IncludeTangents = 2, IncludeBinormals = 4, IncludeTangentBasis = IncludeTangents | IncludeBinormals, All = IncludeNormals | IncludeTangentBasis, }; public enum class FileVersion { Version5 = X42_VER_V5, CurrentVersion = X42_CURRENT_VERSION, SaveVersion = X42_SAVE_VER, }; };