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