9 lines
72 B
C++
9 lines
72 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Name
|
|
{
|
|
std::string name;
|
|
};
|