22 lines
286 B
C++
22 lines
286 B
C++
#pragma once
|
|
|
|
namespace MetaData
|
|
{
|
|
struct MapTplThing;
|
|
}
|
|
|
|
namespace mt
|
|
{
|
|
struct WorldObject;
|
|
}
|
|
|
|
struct BornPoint
|
|
{
|
|
int player_num = 0;
|
|
int android_num = 0;
|
|
std::shared_ptr<mt::WorldObject> wo_meta;
|
|
|
|
int GetNum() { return 10;};
|
|
Position RandPoint() const;
|
|
};
|