mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-06-27 19:03:06 -04:00
12 lines
193 B
C++
12 lines
193 B
C++
#pragma once
|
|
|
|
#include "ui_element.h"
|
|
|
|
namespace recompui {
|
|
|
|
class Image : public Element {
|
|
public:
|
|
Image(Element *parent, std::string_view src);
|
|
};
|
|
|
|
} // namespace recompui
|