Update C sources and examples
This commit is contained in:
parent
3b28d17b95
commit
8f1ad11c49
100 changed files with 2081 additions and 1686 deletions
|
@ -665,15 +665,20 @@ func Fade(color Color, alpha float32) Color {
|
|||
return v
|
||||
}
|
||||
|
||||
// ShowLogo - Activates raylib logo at startup (can be done with flags)
|
||||
func ShowLogo() {
|
||||
C.ShowLogo()
|
||||
}
|
||||
|
||||
// SetConfigFlags - Setup some window configuration flags
|
||||
func SetConfigFlags(flags byte) {
|
||||
cflags := (C.char)(flags)
|
||||
C.SetConfigFlags(cflags)
|
||||
}
|
||||
|
||||
// ShowLogo - Activates raylib logo at startup (can be done with flags)
|
||||
func ShowLogo() {
|
||||
C.ShowLogo()
|
||||
// TakeScreenshot - Takes a screenshot and saves it in the same folder as executable
|
||||
func TakeScreenshot() {
|
||||
C.TakeScreenshot()
|
||||
}
|
||||
|
||||
// StorageSaveValue - Storage save integer value (to defined position)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue