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