mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-05-17 22:41:08 +00:00
12 lines
No EOL
171 B
C++
12 lines
No EOL
171 B
C++
#pragma once
|
|
|
|
#include "ui_element.h"
|
|
|
|
namespace recompui {
|
|
|
|
class Image : public Element {
|
|
public:
|
|
Image(Element *parent);
|
|
};
|
|
|
|
} // namespace recompui
|