aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/entity.h
blob: 9ba0d46d2c001f2c65d5e8191c16a2c8c9cd8a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/** ---------------------------------------------------------------------------
 * @file: entity.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#ifndef YAGE_ENGINE_ENTITY_H
#define YAGE_ENGINE_ENTITY_H

#include <vector>

namespace yage
{

typedef unsigned int Entity;

} // namespace yage

#endif