OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
perceptionmsg.h
Go to the documentation of this file.
1#pragma once
2
3#include <Tempest/Point>
4#include <cstdint>
5
6class Npc;
7
8class PerceptionMsg final {
9 public:
10 int32_t what=0;
11 Tempest::Vec3 pos;
12 Npc* self =nullptr;
13 Npc* other =nullptr;
14 Npc* victim=nullptr;
15 size_t item =size_t(-1);
16 };
Definition npc.h:25
Tempest::Vec3 pos