mirror of
				https://github.com/DerTyp7/example-top-down-unity.git
				synced 2025-10-31 05:17:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			253 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			253 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| 
 | |
| public class Interactable : MonoBehaviour
 | |
| {
 | |
|     
 | |
|     void Start()
 | |
|     {
 | |
|         
 | |
|     }
 | |
|     void Update()
 | |
|     {
 | |
|         
 | |
|     }
 | |
|     public void interact() 
 | |
|     {
 | |
|     
 | |
|     }
 | |
| }
 | 
