OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
itemtorchburning.h
Go to the documentation of this file.
1#pragma once
2
3#include "item.h"
4
5class ItemTorchBurning : public Item {
6 public:
7 ItemTorchBurning(World& owner, size_t inst, Item::Type type);
8
9 void clearView() override;
10 bool isTorchBurn() const override;
11
12 protected:
13 void moveEvent() override;
14
15 private:
16 ObjVisual view;
17 };
18
void moveEvent() override
bool isTorchBurn() const override
void clearView() override
Definition item.h:14
Type
Definition item.h:18
Definition world.h:31