1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-04 17:57:47 +00:00

getType in EffectResult

This commit is contained in:
collett 2023-03-11 18:10:32 +09:00
parent 17b06e31d8
commit 8e77266b30
2 changed files with 6 additions and 1 deletions

View file

@ -45,6 +45,11 @@ uint32_t EffectResult::getValue() const
return m_value;
}
Common::ActionEffectType Sapphire::World::Action::EffectResult::getType() const
{
return m_type;
}
uint64_t EffectResult::getDelay()
{
return m_delayMs;

View file

@ -37,7 +37,7 @@ namespace Sapphire::World::Action
Entity::CharaPtr getTarget() const;
uint32_t getValue() const;
Common::ActionEffectType getType() const;
uint64_t getDelay();
Common::EffectEntry buildEffectEntry() const;