mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
19 lines
366 B
C
19 lines
366 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Provides data for the CacheVirtualItems event.
|
||
|
class CacheVirtualItemsEventArgs
|
||
|
{
|
||
|
public:
|
||
|
CacheVirtualItemsEventArgs(int32_t Start, int32_t End);
|
||
|
~CacheVirtualItemsEventArgs() = default;
|
||
|
|
||
|
// The start of the cache index.
|
||
|
int32_t StartIndex;
|
||
|
// The end of the cache index.
|
||
|
int32_t EndIndex;
|
||
|
};
|
||
|
}
|