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:
parent
17b06e31d8
commit
8e77266b30
2 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue