Files
dota_factory/src/lib/ecs/component/ShipIdentityComponent.h

10 lines
111 B
C++

#pragma once
#include <string>
struct ShipIdentityComponent
{
int level;
std::string schematicId;
};