aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/system.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-05-04 18:37:00 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-05-04 18:37:00 +0100
commit35937f1e76402d25fce180c0519bef6ce77769fe (patch)
treedfbae0532ec2ce4e706fb8ad8fbfe0b1a7ed862d /yage/entity/system.h
parent09535633913069f4653c270501059c38c2d09a99 (diff)
downloadYAGE-35937f1e76402d25fce180c0519bef6ce77769fe.tar.gz
YAGE-35937f1e76402d25fce180c0519bef6ce77769fe.zip
Improving ECS and adding documentation.
Diffstat (limited to 'yage/entity/system.h')
-rw-r--r--yage/entity/system.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/yage/entity/system.h b/yage/entity/system.h
index 15845390..0ca50009 100644
--- a/yage/entity/system.h
+++ b/yage/entity/system.h
@@ -19,7 +19,8 @@ namespace yage
class System : public NonCopyable
{
public:
-
+ virtual void init() = 0;
+ virtual void update() = 0;
};
} // namespace yage