mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +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;
|
|
};
|
|
|
|
}
|