mirror of
https://github.com/yeslayla/godot-build-tools.git
synced 2025-12-06 09:13:27 +01:00
Logging & Godot Downloader
This commit is contained in:
24
internal/godot_wrapper.go
Normal file
24
internal/godot_wrapper.go
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user