OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
earthquake.h
Go to the documentation of this file.
1#pragma once
2
3#include "abstracttrigger.h"
4
5class World;
6
7class Earthquake : public AbstractTrigger {
8 public:
9 Earthquake(Vob* parent, World& world, const zenkit::VEarthquake& data, Flags flags);
10
11 void onTrigger(const TriggerEvent& evt) override;
12
13 private:
14
15 };
void onTrigger(const TriggerEvent &evt) override
Definition vob.h:11
Flags
Definition vob.h:13
World & world
Definition vob.h:45
Definition world.h:31