/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: ICharacterProviderEx.hpp Date: 2022-1-29 Author: Reece ***/ #pragma once namespace Aurora::IO::Character { struct ICharacterProviderEx : ICharacterProvider { virtual AuUInt GetPosition() = 0; virtual bool SetPosition(AuUInt offset) = 0; }; }