-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTriggerInfo.h
More file actions
24 lines (21 loc) · 734 Bytes
/
TriggerInfo.h
File metadata and controls
24 lines (21 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#include "DevTools.h"
#include "CATHODE.h"
namespace CATHODE::TriggerInfo
{
/**
* \brief Describes information about a trigger that is active for a CATHODE node.
*/
struct TriggerInfo {
DataTypes::ShortGuid guid; /* The ShortGuid of the node that triggered us. */
float unk;
struct MemoryAllocationBase* mem_allocation_base;
struct TriggerInfo* next_trigger; /* Appears to link to another TriggerInfo object? */
DataTypes::String name; /* What exactly does this contain? I guessed it was the trigger name, from the datatype. */
double duration; /* How long the trigger has been active for. */
short state;
int reference_count;
};
struct MemoryAllocationBase { /* PlaceHolder Structure */
};
}