001package com.fs.starfarer.api.ui;
002
003public interface UIPanelAPI extends UIComponentAPI {
004
005        PositionAPI addComponent(UIComponentAPI custom);
006        void removeComponent(UIComponentAPI component);
007        void bringComponentToTop(UIComponentAPI c);
008        void sendToBottom(UIComponentAPI c);
009}