Convert rlImGui to C

This commit is contained in:
2023-11-11 05:49:43 +01:00
parent 2f358ef5f7
commit 7513ecc7eb
20 changed files with 712 additions and 7062 deletions

View File

@@ -31,7 +31,10 @@
#pragma once
#include "raylib.h"
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
#include "cimgui.h"
#define NO_FONT_AWESOME
#ifndef NO_FONT_AWESOME
#include "extras/IconsFontAwesome6.h"
#define FONT_AWESOME_ICON_SIZE 11
@@ -169,7 +172,7 @@ bool rlImGuiImageButton(const char* name, const Texture* image);
/// <param name="image">The texture to draw</param>
/// <param name="size">The size of the button/param>
/// <returns>True if the button was clicked</returns>
bool rlImGuiImageButtonSize(const char* name, const Texture* image, struct ImVec2 size);
bool rlImGuiImageButtonSize(const char* name, const Texture* image, ImVec2 size);
#ifdef __cplusplus
}