mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
369 B
C++
15 lines
369 B
C++
namespace phoenix {
|
|
|
|
struct pHorizontalScroller : public pWidget {
|
|
HorizontalScroller& horizontalScroller;
|
|
|
|
void setLength(unsigned length);
|
|
void setPosition(unsigned position);
|
|
|
|
pHorizontalScroller(HorizontalScroller& horizontalScroller) : pWidget(horizontalScroller), horizontalScroller(horizontalScroller) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|