OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
staticobj.h
Go to the documentation of this file.
1#pragma once
2
4#include "vob.h"
5
6class StaticObj : public Vob {
7 public:
8 StaticObj(Vob* parent, World& world, const zenkit::VirtualObject& vob, Flags flags);
9
10 private:
11 void moveEvent() override;
12 bool setMobState(std::string_view scheme,int32_t st) override;
13
14 ObjVisual visual;
15 std::string scheme;
16 };
17
Definition vob.h:11
Flags
Definition vob.h:13
World & world
Definition vob.h:45
Definition world.h:31