Unravel Engine C++ Reference
Loading...
Searching...
No Matches
prefab.h
Go to the documentation of this file.
1#pragma once
2#include <engine/engine_export.h>
3
4#include <iosfwd>
5#include <istream>
6#include <memory>
7#include <vector>
9
10namespace unravel
11{
12
24
31{
32};
33
34} // namespace unravel
Represents a generic prefab with a buffer for serialized data.
Definition prefab.h:18
fs::stream_buffer< std::vector< uint8_t > > buffer
Buffer to store serialized data of the prefab.
Definition prefab.h:22
Represents a scene-specific prefab. Inherits from the generic prefab structure.
Definition prefab.h:31