mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 12:33:35 +00:00
12 lines
508 B
C++
12 lines
508 B
C++
#pragma once
|
|
|
|
#include "IUIScene_AbstractContainerMenu.h"
|
|
|
|
class IUIScene_ContainerMenu : public virtual IUIScene_AbstractContainerMenu {
|
|
protected:
|
|
virtual ESceneSection GetSectionAndSlotInDirection(ESceneSection eSection,
|
|
ETapState eTapDirection,
|
|
int* piTargetX,
|
|
int* piTargetY);
|
|
int getSectionStartOffset(ESceneSection eSection);
|
|
}; |