11 lines
292 B
C++
11 lines
292 B
C++
#pragma once
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <string>
|
|
#include "../Entitys/Object.h"
|
|
|
|
extern std::vector<std::shared_ptr<Object>> objects;
|
|
extern std::string savedStateYAML;
|
|
|
|
std::shared_ptr<Object> FindByTagRecursive(const std::shared_ptr<Object>& obj, const std::string& tag);
|