mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-02-05 05:06:34 +00:00
17 lines
297 B
C++
17 lines
297 B
C++
#pragma once
|
|
|
|
#include "ui_element.h"
|
|
|
|
namespace recompui {
|
|
|
|
enum class ScrollDirection {
|
|
Horizontal,
|
|
Vertical
|
|
};
|
|
|
|
class ScrollContainer : public Element {
|
|
public:
|
|
ScrollContainer(Element *parent, ScrollDirection direction);
|
|
};
|
|
|
|
} // namespace recompui
|