mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
| const A: = preload("base_outer_resolution_a.notest.gd")
 | |
| const B: = preload("base_outer_resolution_b.notest.gd")
 | |
| const C: = preload("base_outer_resolution_c.notest.gd")
 | |
| 
 | |
| const Extend: = preload("base_outer_resolution_extend.notest.gd")
 | |
| 
 | |
| func test() -> void:
 | |
| 	Extend.test_a(A.new())
 | |
| 	Extend.test_b(B.new())
 | |
| 	Extend.InnerClass.test_c(C.new())
 | |
| 	Extend.InnerClass.InnerInnerClass.test_a_b_c(A.new(), B.new(), C.new())
 | |
| 	Extend.InnerClass.InnerInnerClass.test_enum(C.TestEnum.HELLO_WORLD)
 | |
| 	Extend.InnerClass.InnerInnerClass.test_a_prime(A.APrime.new())
 | 
