10 lines
111 B
C++
10 lines
111 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct ShipIdentityComponent
|
|
{
|
|
int level;
|
|
std::string schematicId;
|
|
};
|