ImGuiNET / ImGui.NET

An ImGui wrapper for .NET.
MIT License
1.87k stars 305 forks source link

ImGuiController problem #459

Open ghost opened 8 months ago

ghost commented 8 months ago

Hi, my problem is that "ImGuiController" is not recognized by the ImGuiNET module.

Here is my code error :

Severity Code Description Project File Line Deletion Status Error CS0246 The type or namespace name 'ImGuiController' was not found (are you missing a using directive or assembly reference?) WindowsFormsApp1 C:\Users\pin2p\source\repos\WindowsFormsApp1\WindowsFormsApp1 \Program.cs 46 Active

NoahStolk commented 8 months ago

As stated by the build error, you need to add a using directive that imports the namespace where your ImGuiController type is declared. This is common C# knowledge and not a problem with ImGui.NET.