aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/system.h
diff options
context:
space:
mode:
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 7c67ac6f..84536cc9 100644
--- a/yage/entity/system.h
+++ b/yage/entity/system.h
@@ -1,4 +1,5 @@
/** ---------------------------------------------------------------------------
+ * -*- c++ -*-
* @file: system.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
@@ -18,7 +19,7 @@ namespace yage
class System : public NonCopyable
{
public:
- virtual void init() = 0;
+ virtual void init() = 0;
virtual void update() = 0;
};