aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/common/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/common/object.h')
-rw-r--r--src/libjin/common/object.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libjin/common/object.h b/src/libjin/common/object.h
new file mode 100644
index 0000000..581500f
--- /dev/null
+++ b/src/libjin/common/object.h
@@ -0,0 +1,19 @@
+#ifndef __JE_OBJECT_H__
+#define __JE_OBJECT_H__
+
+namespace JinEngine
+{
+
+ ///
+ /// Base class of all classes in libjin.
+ ///
+ class Object
+ {
+ public:
+ virtual ~Object() {};
+
+ };
+
+} // namespace JinEngine
+
+#endif \ No newline at end of file