Timestamp.h 327 B

123456789101112131415161718
  1. // Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <anki/util/StdTypes.h>
  7. namespace anki
  8. {
  9. /// Timestamp type
  10. using Timestamp = U32;
  11. const U MAX_TIMESTAMP = MAX_U32;
  12. } // end namespace anki