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

13 lines
No EOL
202 B
C++

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