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

#ifndef YAGE_ENGINE_COMPONENT_H
#define YAGE_ENGINE_COMPONENT_H

class Component
{
};

enum class ComponentEnum {
    POSITION,
    NAX_COMPONENTS,
};

#endif