mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
18 lines
198 B
C++
18 lines
198 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class User
|
|
{
|
|
public:
|
|
User(const std::string& a, const std::string& b)
|
|
{
|
|
field_0 = a;
|
|
field_18 = b;
|
|
}
|
|
|
|
public:
|
|
std::string field_0;
|
|
std::string field_18;
|
|
};
|