22 lines
467 B
C++
22 lines
467 B
C++
#include "QuestScripts.h"
|
|
#include "GameObjectManager.h"
|
|
#include "Inventory.h"
|
|
#include <iostream>
|
|
|
|
namespace ZL
|
|
{
|
|
|
|
std::function<void(GameObjectManager&, size_t)> createRoom1Logic()
|
|
{
|
|
return [](GameObjectManager& gom, size_t ms)
|
|
{
|
|
// if (gom.inventory.HasItem("book")) {
|
|
// std::cout << "[Room 1] Игрок поднял книгу!\n";
|
|
//
|
|
// gom.switch_room(1);
|
|
// }
|
|
};
|
|
}
|
|
|
|
}
|