TypeDefine.cpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. -----------------------------------------------------------------------------
  3. The MIT License (MIT)
  4. Copyright (c) 2013-08-17 Tobias Peters <tobias.peters@kreativeffekt.at>
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. THE SOFTWARE.
  20. -----------------------------------------------------------------------------
  21. */
  22. #include "common/TypeDefine.h"
  23. namespace QGears
  24. {
  25. const String EXT_MATERIAL( ".material" );
  26. const String EXT_MESH ( ".mesh" );
  27. const String EXT_SKELETON( ".skeleton" );
  28. const String EXT_CONFIG ( ".cfg" );
  29. const String EXT_LOG ( ".log" );
  30. const String EXT_P ( ".p" );
  31. const String EXT_PLY ( ".ply" );
  32. const String EXT_RSD ( ".rsd" );
  33. const String EXT_TEX ( ".tex" );
  34. const String EXT_TIM ( ".tim" );
  35. const String EXT_TRIGGERS (".triggers");
  36. const String EXT_BACKGROUND ( ".background" );
  37. const String EXT_CAMERA_MATRIX( ".cam_matrix" );
  38. const String EXT_MODEL_LIST ( ".model_list" );
  39. const String EXT_PALETTE ( ".palette" );
  40. const String EXT_WALKMESH ( ".walkmesh" );
  41. }