mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
8 lines
136 B
C++
8 lines
136 B
C++
#pragma once
|
|
#include "pch.h"
|
|
|
|
|
|
class TextureLoader {
|
|
public:
|
|
static winrt::com_ptr<ID3D11Texture2D> Load(const wchar_t* fileName);
|
|
};
|