mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-13 22:17:45 +00:00
13 lines
202 B
C++
13 lines
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 ];
|
||
|
}
|