Unravel Engine C++ Reference
Loading...
Searching...
No Matches
script.h
Go to the documentation of this file.
1#pragma once
2#include <engine/engine_export.h>
3
4#include <chrono>
5#include <string>
6#include <vector>
7
8namespace unravel
9{
10
11struct script
12{
13 using sptr = std::shared_ptr<script>;
14 using wptr = std::weak_ptr<script>;
15 using uptr = std::unique_ptr<script>;
16
17};
18
20{
21 enum compilation_flags : uint32_t
22 {
25 };
26};
27
28} // namespace unravel
std::unique_ptr< script > uptr
Unique pointer to a physics material.
Definition script.h:15
std::weak_ptr< script > wptr
Weak pointer to a physics material.
Definition script.h:14
std::shared_ptr< script > sptr
Shared pointer to a physics material.
Definition script.h:13