Timestamp.h 348 B

123456789101112131415161718
  1. // Copyright (C) 2009-2015, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #ifndef ANKI_CORE_TIMESTAMP_H
  6. #define ANKI_CORE_TIMESTAMP_H
  7. #include "anki/util/StdTypes.h"
  8. namespace anki {
  9. /// Timestamp type
  10. typedef U32 Timestamp;
  11. } // end namespace anki
  12. #endif