mirror of
				https://github.com/DerTyp7/grow-ai-unity.git
				synced 2025-10-30 21:07:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			197 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			197 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| 
 | |
| public class Way : PlacedObject
 | |
| {
 | |
|     public override void OnPlace()
 | |
|     {
 | |
|         Debug.Log("Placed Way");
 | |
|     }
 | |
| 
 | |
| }
 | 
