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