yuzu-fork/src/shader_recompiler/environment.h

15 lines
231 B
C++
Raw Normal View History

2021-01-09 06:30:07 +00:00
#pragma once
#include "common/common_types.h"
namespace Shader {
class Environment {
public:
virtual ~Environment() = default;
[[nodiscard]] virtual u64 ReadInstruction(u32 address) const = 0;
};
} // namespace Shader