aboutsummaryrefslogtreecommitdiff
path: root/src/core/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/user.h')
-rw-r--r--src/core/user.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/user.h b/src/core/user.h
new file mode 100644
index 0000000..1feaf2f
--- /dev/null
+++ b/src/core/user.h
@@ -0,0 +1,10 @@
+#ifndef HIVE_MIND_CORE_USER_H_
+#define HIVE_MIND_CORE_USER_H_
+
+
+struct User {
+ std::string user_id;
+ std::string nick;
+};
+
+#endif