mirror of
https://github.com/yeslayla/godot-build-tools.git
synced 2025-01-14 04:53:42 +01:00
25 lines
372 B
Go
25 lines
372 B
Go
|
package internal
|
||
|
|
||
|
type ExportType uint8
|
||
|
|
||
|
const (
|
||
|
ExportTypeRelease ExportType = iota
|
||
|
ExportTypeDebug
|
||
|
ExportTypePack
|
||
|
)
|
||
|
|
||
|
type GodotArgBuilder interface {
|
||
|
AddHeadlessFlag()
|
||
|
AddDebugFlag()
|
||
|
AddVerboseFlag()
|
||
|
AddQuietFlag()
|
||
|
|
||
|
AddDumpGDExtensionInterfaceFlag()
|
||
|
AddDumpExtensionApiFlag()
|
||
|
AddCheckOnlyFlag()
|
||
|
|
||
|
AddExportFlag(exportType ExportType)
|
||
|
|
||
|
GenerateArgs() string
|
||
|
}
|