mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
14 lines
249 B
C++
14 lines
249 B
C++
#pragma once
|
|
#include "pch.h"
|
|
#include "EffectDesc.h"
|
|
|
|
|
|
class EffectCompiler {
|
|
public:
|
|
EffectCompiler() = default;
|
|
|
|
static UINT Compile(const wchar_t* fileName, EffectDesc& desc);
|
|
|
|
// 当前 MagpieFX 版本
|
|
static constexpr UINT VERSION = 1;
|
|
};
|