WKLib 0.2.3
A modding library for White Knuckle
Loading...
Searching...
No Matches
ModTab.cs
Go to the documentation of this file.
1using Imui.Core;
2
3namespace WKLib.API.UI;
4
5public abstract class ModTab
6{
7 public abstract string DisplayName { get; }
8
9 public abstract void DrawSubMenu(ImGui gui);
10}
string DisplayName
Definition ModTab.cs:7
void DrawSubMenu(ImGui gui)