17 lines
212 B
C++
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_;
|
|
};
|