aboutsummaryrefslogtreecommitdiff
path: root/src/core/user.h
blob: 1feaf2f973f402a8b93634a113d2ad93d156b1a1 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef HIVE_MIND_CORE_USER_H_
#define HIVE_MIND_CORE_USER_H_


struct User {
    std::string user_id;
    std::string nick;
};

#endif