OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
globalfx.h
Go to the documentation of this file.
1#pragma once
2
3#include <memory>
5
6class GlobalFx {
7 public:
8 GlobalFx();
9 GlobalFx(GlobalFx&& other);
11 ~GlobalFx();
12
13 uint64_t effectPrefferedTime() const;
14
15 private:
16 GlobalFx(const std::shared_ptr<GlobalEffects::Effect>& h);
17 std::shared_ptr<GlobalEffects::Effect> h;
18 friend class GlobalEffects;
19 };
20
uint64_t effectPrefferedTime() const
Definition globalfx.cpp:25
GlobalFx & operator=(GlobalFx &&other)
Definition globalfx.cpp:15