mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
14 lines
475 B
C++
14 lines
475 B
C++
#pragma once
|
|
|
|
class IPackValueSupplier
|
|
{
|
|
public:
|
|
IPackValueSupplier() = default;
|
|
virtual ~IPackValueSupplier() = default;
|
|
IPackValueSupplier(const IPackValueSupplier& other) = default;
|
|
IPackValueSupplier(IPackValueSupplier&& other) noexcept = default;
|
|
IPackValueSupplier& operator=(const IPackValueSupplier& other) = default;
|
|
IPackValueSupplier& operator=(IPackValueSupplier&& other) noexcept = default;
|
|
|
|
virtual int GetCurrentPack() const = 0;
|
|
}; |