EAttributes.h 523 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (C) 2002-2012 Nikolaus Gebhardt
  2. // This file is part of the "Irrlicht Engine".
  3. // For conditions of distribution and use, see copyright notice in irrlicht.h
  4. #pragma once
  5. namespace irr
  6. {
  7. namespace io
  8. {
  9. //! Types of attributes available for IAttributes
  10. enum E_ATTRIBUTE_TYPE
  11. {
  12. // integer attribute
  13. EAT_INT = 0,
  14. // float attribute
  15. EAT_FLOAT,
  16. // boolean attribute
  17. EAT_BOOL,
  18. // known attribute type count
  19. EAT_COUNT,
  20. // unknown attribute
  21. EAT_UNKNOWN
  22. };
  23. } // end namespace io
  24. } // end namespace irr