game2006/server/gameserver/incubator.h
aozhiwei f41e74d5c4 1
2021-04-12 11:08:15 +08:00

17 lines
212 B
C++

#pragma once
class Human;
class Room;
class Incubator
{
public:
Room* room = nullptr;
void Init();
void UnInit();
void AddHoldHuman(Human* num);
private:
std::set<Human*> hold_humans_;
};