mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
12 lines
226 B
C++
12 lines
226 B
C++
#pragma once
|
|
#include <Nuake/Core/Core.h>
|
|
#include <Nuake/Rendering/Textures/Material.h>
|
|
|
|
class MaterialEditor
|
|
{
|
|
public:
|
|
MaterialEditor() = default;
|
|
~MaterialEditor() = default;
|
|
|
|
void Draw(Ref<Nuake::Material> material);
|
|
}; |