16 lines
214 B
C++
16 lines
214 B
C++
#pragma once
|
|
|
|
namespace MetaData
|
|
{
|
|
struct MapTplThing;
|
|
}
|
|
|
|
struct BornPoint
|
|
{
|
|
MetaData::MapTplThing* thing_tpl = nullptr;
|
|
int player_num = 0;
|
|
int android_num = 0;
|
|
|
|
a8::Vec2 RandPoint() const;
|
|
};
|