Skip to content

Commit

Permalink
Add Automation structs
Browse files Browse the repository at this point in the history
  • Loading branch information
gen2brain committed Nov 9, 2023
1 parent 0ed826c commit 07d1374
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions raylib/raylib.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@ func NewWave(sampleCount, sampleRate, sampleSize, channels uint32, data []byte)
return Wave{sampleCount, sampleRate, sampleSize, channels, d}
}

// AutomationEvent - Automation event
type AutomationEvent struct {
Frame uint32
Type uint32
Params [4]int32
}

// AutomationEventList - Automation event list
type AutomationEventList struct {
Capacity uint32
Count uint32
Events *AutomationEvent
}

// CameraMode type
type CameraMode int32

Expand Down

0 comments on commit 07d1374

Please sign in to comment.