summaryrefslogtreecommitdiff
path: root/kurator/src/inspect.h
blob: c48ee5e388ac2345117dba8270c8c37acfe6ae81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <entt/entity/handle.hpp>


namespace kurator
{


struct InspectionWindow
{
	bool open = false;
	entt::handle selected = {};
	void show();
	void select(entt::handle entity);
};


}  // namespace kurator