mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-03-07 05:23:02 +00:00
10 lines
185 B
C++
10 lines
185 B
C++
#pragma once
|
|
|
|
#include "Parsing/IPackValueSupplier.h"
|
|
|
|
class MockPackValueSupplier final : public IPackValueSupplier
|
|
{
|
|
public:
|
|
[[nodiscard]] int GetCurrentPack() const override;
|
|
};
|