1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-13 22:17:45 +00:00
sapphire/src/world/Event/SceneResult.cpp

13 lines
202 B
C++
Raw Normal View History

#include "EventHandler.h"
using namespace Sapphire::Event;
uint32_t SceneResult::getResult( uint32_t index ) const
{
if( index >= results.size() )
{
return 0;
}
return results[ index ];
}