Nuclide
Software Development Kit for id Technology (BETA)
Hint.h
1/*
2 * Copyright (c) 2016-2025 Vera Visions LLC.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15*/
16
17typedef enum
18{
19 IGNORE_NO,
20 IGNORE_YES,
21 IGNORE_DEFAULT
22} ignorefacing_t;
23
46class
48{
49public:
50 void ncHint(void);
51
52 /* overrides */
53 virtual void Save(float);
54 virtual void Restore(string,string);
55 virtual void SpawnKey(string,string);
56 virtual void Spawned(void);
57
58private:
59 string m_hintType;
60 string m_strHintActivity;
61 float m_flNodeFOV;
62 string m_strHintGroup;
63 ignorefacing_t m_ignoreFacing;
64 string m_mindsetFilter;
65};
Nav Hint.
Definition: Hint.h:48
This entity class represents point-entity triggers.
Definition: PointTrigger.h:26