blob: a9978daf30aa87c4757a78f7c64b717f78ec55dc [file] [log] [blame]
James Kuszmaulcf324122023-01-14 14:07:17 -08001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#pragma once
6
James Kuszmaulb13e13f2023-11-22 20:44:04 -08007#define IMGUI_DEFINE_MATH_OPERATORS
James Kuszmaulcf324122023-01-14 14:07:17 -08008#include <imgui.h>
9
10void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0,
11 const ImVec2& pivot = ImVec2(0, 0));
12void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0);