Fix typos, add button section
parent
bbc1ab734b
commit
5ce9b09649
@ -1,9 +1,7 @@
|
|||||||
# Text
|
# Text
|
||||||
## ImGui::Text
|
## ImGui::Text
|
||||||
|
|
||||||
Outputs a formatted text. The format options is like `printf`
|
Draws formatted text. The format options are like `printf`.
|
||||||
|
|
||||||
### Input
|
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
```c++
|
```c++
|
||||||
@ -11,6 +9,15 @@ ImGui::Text("Hello world %f", 42);
|
|||||||
```
|
```
|
||||||
|
|
||||||
# Main
|
# Main
|
||||||
|
## ImGui::Button
|
||||||
|
Draws a button and returns whether it was clicked or not.
|
||||||
|
### Example
|
||||||
|
```c++
|
||||||
|
if (ImGui::Button("Button"))
|
||||||
|
{
|
||||||
|
printf("Button Clicked");
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
# Combo Box
|
# Combo Box
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user