mirror of
				https://github.com/yeslayla/godot-build-tools.git
				synced 2025-10-30 23:03:07 +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
 | |
| }
 |