ktsu.io.ImGuiApp 1.0.0-alpha.15

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of ktsu.io.ImGuiApp.
dotnet add package ktsu.io.ImGuiApp --version 1.0.0-alpha.15
NuGet\Install-Package ktsu.io.ImGuiApp -Version 1.0.0-alpha.15
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ktsu.io.ImGuiApp" Version="1.0.0-alpha.15" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ktsu.io.ImGuiApp --version 1.0.0-alpha.15
#r "nuget: ktsu.io.ImGuiApp, 1.0.0-alpha.15"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ktsu.io.ImGuiApp as a Cake Addin
#addin nuget:?package=ktsu.io.ImGuiApp&version=1.0.0-alpha.15&prerelease

// Install ktsu.io.ImGuiApp as a Cake Tool
#tool nuget:?package=ktsu.io.ImGuiApp&version=1.0.0-alpha.15&prerelease

ImGuiApp

A bootstrap library to give you an environment to build an ImGUI.NET application with.

Minimal Example

namespace ktsu.io.ImGuiAppDemo;

using ImGuiNET;
using ktsu.io.ImGuiApp;

internal class ImGuiAppDemo
{
	private static bool showImGuiDemo;

	private static void Main() =>
		ImGuiApp.Start(nameof(ImGuiAppDemo), new(), OnStart, OnTick, OnMenu, OnWindowResized);

	private static void OnStart() => {}

	private static void OnTick(float dt)
	{
		ImGui.ShowDemoWindow(ref showImGuiDemo);
		ImGui.Begin("Demo");
		ImGui.Text("Hello, ImGui.NET!");
		ImGui.Text("This is a demo of ImGui.NET.");
		ImGui.End();
	}

	private static void OnMenu() => {}

	private static void OnWindowResized() => {}
}

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-alpha.15 157 4/6/2024
1.0.0-alpha.14 84 3/28/2024
1.0.0-alpha.13 50 3/28/2024
1.0.0-alpha.12 57 3/27/2024
1.0.0-alpha.11 46 3/27/2024
1.0.0-alpha.10 161 2/29/2024
1.0.0-alpha.9 81 2/28/2024
1.0.0-alpha.8 52 2/28/2024
1.0.0-alpha.7 73 2/13/2024
1.0.0-alpha.6 72 1/23/2024
1.0.0-alpha.5 43 1/23/2024
1.0.0-alpha.4 50 1/22/2024
1.0.0-alpha.3 56 1/16/2024
1.0.0-alpha.2 93 12/26/2023
1.0.0-alpha.1 81 12/12/2023