add osc timetag

This commit is contained in:
2024-12-22 14:16:57 -06:00
parent fea1d47085
commit b71ee95364
2 changed files with 30 additions and 1 deletions
+6 -1
View File
@@ -5,7 +5,7 @@ type OSCPacket interface {
}
type OSCBundle struct {
TimeTag uint64
TimeTag OSCTimeTag
Contents []OSCPacket
}
@@ -25,3 +25,8 @@ type OSCColor struct {
b uint8
a uint8
}
type OSCTimeTag struct {
seconds int32
fractionalSeconds int32
}