DSC Engine
Loading...
Searching...
No Matches
profile.hpp
1#pragma once
2
3#include "DSCEngine/types/string.hpp"
4
5namespace DSC
6{
9 class Profile
10 {
11 public:
12 struct Birthday
13 {
14 unsigned char day;
15 unsigned char month;
16 };
17
18 static Birthday birthday();
19
20 // HOLY user profile text is UTF16.......
21 /*static String name();
22
23 static String message();*/
24 };
25}
access to user's personal data
Definition: profile.hpp:10
Definition: profile.hpp:13