Show More
Commit Description:
Add very basic visitor simulation....
Commit Description:
Add very basic visitor simulation. Simulate visitors as a direct linear function of trees. This is very simplistic and looks simplistic (it's pretty easy to see visitors are always 1/10 of the trees).
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiPopupFlags.gen.cs
18 lines | 403 B | text/x-csharp | CSharpLexer
Add ImGui.
r16 namespace ImGuiNET
{
[System.Flags]
public enum ImGuiPopupFlags
{
None = 0,
MouseButtonLeft = 0,
MouseButtonRight = 1,
MouseButtonMiddle = 2,
Get really basic graph working.
r503 MouseButtonMask = 31,
Add ImGui.
r16 MouseButtonDefault = 1,
Get really basic graph working.
r503 NoOpenOverExistingPopup = 32,
NoOpenOverItems = 64,
AnyPopupId = 128,
AnyPopupLevel = 256,
AnyPopup = 384,
Add ImGui.
r16 }
}