mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
17 lines
203 B
C
17 lines
203 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include "BehaviorSlot.h"
|
||
|
|
||
|
namespace nejlika
|
||
|
{
|
||
|
|
||
|
class TriggerParameters
|
||
|
{
|
||
|
public:
|
||
|
int32_t SkillID = 0;
|
||
|
BehaviorSlot SelectedBehaviorSlot = BehaviorSlot::Invalid;
|
||
|
};
|
||
|
|
||
|
}
|