mirror of
https://github.com/yeslayla/godot-build-tools.git
synced 2025-12-06 01:13:08 +01:00
10 lines
112 B
Go
10 lines
112 B
Go
package internal
|
|
|
|
type TargetOS uint8
|
|
|
|
const (
|
|
TargetOSLinux TargetOS = iota
|
|
TargetOSWindows
|
|
TargetOSMacOS
|
|
)
|