Skip to content
View kuujoo's full-sized avatar

Block or report kuujoo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. C# Style actions in C++ C# Style actions in C++
    1
    /**
    2
      	pxl::Action<int, int, bool> a;
    3
    4
    	a += [](int p0, int p1, bool p3)
    5
    	{
  2. ImGui enum selector in C# ImGui enum selector in C#
    1
    public static class ImGuiUtils
    2
    {
    3
        static bool EnumSelector<T>(string name, int idOffset, ref T selection)
    4
        {
    5
            bool change = false;