Skip to content

Commit

Permalink
fixes header to account 2 extra parameters in ImVec4 Create and adds …
Browse files Browse the repository at this point in the history
…optionals
  • Loading branch information
ericoporto committed Jun 7, 2020
1 parent 60820d8 commit 78a57a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agsimgui/agsimgui.cpp
Expand Up @@ -412,7 +412,7 @@ namespace agsimgui {
"builtin managed struct ImVec4 { \r\n"
" \r\n"
" /// Creates a ImVec4 with float X and Y coordinates. \r\n"
" import static ImVec4* Create(float x, float y); // $AUTOCOMPLETESTATICONLY$ \r\n"
" import static ImVec4* Create(float x=0, float y=0, float z=0, float w=0); // $AUTOCOMPLETESTATICONLY$ \r\n"
" \r\n"
" /// Float X coordinate of the ImVec4. \r\n"
" import attribute float X; \r\n"
Expand Down Expand Up @@ -446,7 +446,7 @@ namespace agsimgui {
"builtin managed struct ImVec2 { \r\n"
" \r\n"
" /// Creates a ImVec2 with float X and Y coordinates. \r\n"
" import static ImVec2* Create(float x, float y); // $AUTOCOMPLETESTATICONLY$ \r\n"
" import static ImVec2* Create(float x=0, float y=0); // $AUTOCOMPLETESTATICONLY$ \r\n"
" \r\n"
" /// Float X coordinate of the ImVec2. \r\n"
" import attribute float X; \r\n"
Expand Down

0 comments on commit 78a57a0

Please sign in to comment.