# Stage 1.9
- Add AppInit Flags and AppFlags to COntrol some Individual Stuff (Not using default can run into a crash report if things get used that are disabled) - Create a Test Settings Menu - Make Some Menu functions Public - Add ScrollTo Animation - Make ContainerApi fully public - Remove an else statement (now need to find a way to not set the pos twice) -
This commit is contained in:
@ -58,7 +58,12 @@ class Context : public SmartCtor<Context> {
|
||||
DrawList::Ref BackList() { return back; }
|
||||
DrawList::Ref FrontList() { return front; }
|
||||
|
||||
void RootLayer(int l) { root_layer = l; }
|
||||
int RootLayer() const { return root_layer; }
|
||||
|
||||
private:
|
||||
// Used in Overlays
|
||||
int root_layer = 0;
|
||||
// Linked Renderer / Hid
|
||||
LI::Renderer::Ref ren;
|
||||
Hid::Ref inp;
|
||||
|
Reference in New Issue
Block a user