added another keyword conversion case to support raygui generation

This commit is contained in:
EnokViking 2024-01-16 09:15:32 +01:00
parent fe7f9d32e3
commit ab712e871e

View file

@ -365,6 +365,7 @@ namespace RaylibBeefGenerator
input = ReplaceWholeWord(input, "box", "@box");
input = ReplaceWholeWord(input, "params", "@params");
input = ReplaceWholeWord(input, "readonly", "@readonly");
input = ReplaceWholeWord(input, "checked", "@checked");
return input;
}