20 lines
334 B
C++
Raw Normal View History

#pragma once
#include "common.hpp"
#include "imgui.h"
#include "features.hpp"
#include "settings.h"
#include "natives.hpp"
#include "script.hpp"
#include "fiber_pool.hpp"
namespace big
{
class tabbar
{
public:
static void render_self();
2020-12-26 16:47:27 +01:00
static void render_tunables();
2020-12-26 17:13:41 +01:00
static void render_teleport();
};
}