blob: 0b9ecad1c4765ee0ae993799a481469e7a52bcf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/*
core/extension.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#ifndef __INCLUDED_CORE_EXTENSION_H__
#define __INCLUDED_CORE_EXTENSION_H__
namespace core {
class Extension;
}
#include "core/entity.h"
namespace core {
/// a abstract base class for entity extensions
class Extension {
public:
/// extension types
enum Type { Client=0, Render=1, Sound=2, Game=3 };
inline Type type() const { return extension_type; }
inline Entity *entity() { return extension_entity; }
Extension(Type type, Entity *entity);
virtual ~Extension();
virtual void frame(float elapsed) = 0;
private:
Type extension_type;
Entity *extension_entity;
};
} // namespace core
#endif // __INCLUDED_CORE_EXTENSION_H__
|