Files
OpenAssetTools/src/ZoneCodeGeneratorLib/Parsing/IPackValueSupplier.h
2021-02-18 21:55:13 +01:00

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;
};