LeviLamina
Loading...
Searching...
No Matches
SeekerI.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/bx/Whence.h"
7
8namespace bx {
9
10struct SeekerI {
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~SeekerI() = 0;
15
16 virtual int64 seek(int64 _offset, ::bx::Whence::Enum _whence) = 0;
17 // NOLINTEND
18
19public:
20 // virtual function thunks
21 // NOLINTBEGIN
22
23 // NOLINTEND
24};
25
26} // namespace bx
Definition SeekerI.h:7