8 lines
156 B
C
8 lines
156 B
C
|
|
#pragma once
|
||
|
|
#include "render/editor_system.h"
|
||
|
|
namespace api {
|
||
|
|
class AssetPreviewPanel : public EditorPanel{
|
||
|
|
public:
|
||
|
|
void DrawPanel() override;
|
||
|
|
};
|
||
|
|
}
|