mirror of
https://github.com/EyeTrackVR/EyeTrackVR.git
synced 2025-09-26 23:09:28 +08:00
13 lines
201 B
Python
13 lines
201 B
Python
import dataclasses
|
|
from enum import IntEnum
|
|
|
|
|
|
class OSCMessageType(IntEnum):
|
|
EYE_INFO = 1
|
|
VRCFT_MODULE_INFO = 2
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class OSCMessage:
|
|
type: OSCMessageType
|
|
data: any |