blob: 86730cca1683a0f9c04d0cf5555c16f4aed9a073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <cstdint>
#include <vector>
#include <functional>
namespace crepe {
//! GameObject ID
typedef uint32_t game_object_id_t;
//! vector of reference_wrapper
template <typename T>
using RefVector = std::vector<std::reference_wrapper<T>>;
}
|