entity
Entity/Component System for C++
entity_index.hpp
Go to the documentation of this file.
1 // ****************************************************************************
2 // entity/entity_index.h
3 //
4 // Definitition on the entity index type.
5 //
6 // Copyright Chris Glover 2014-2015
7 //
8 // Distributed under the Boost Software License, Version 1.0.
9 // See accompanying file LICENSE_1_0.txt or copy at
10 // http://www.boost.org/LICENSE_1_0.txt
11 //
12 // ****************************************************************************
13 #ifndef _ENTITY_ENTITYINDEX_H_INCLUDED_
14 #define _ENTITY_ENTITYINDEX_H_INCLUDED_
15 
16 #include <cstddef>
17 
18 #include "entity/config.hpp" // IWYU pragma: keep
19 
20 // ----------------------------------------------------------------------------
21 //
22 namespace entity
23 {
24  typedef std::size_t entity_index_t;
25 }
26 
27 #endif // _ENTITY_ENTITYINDEX_H_INCLUDED_
std::size_t entity_index_t