mirror of
				https://github.com/nothke/quality-control.git
				synced 2025-10-30 16:15:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			273 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			273 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| using Nothke.Interaction;
 | |
| 
 | |
| public class InteractableTest : Interactable
 | |
| {
 | |
|     public override void Use(InteractionController im)
 | |
|     {
 | |
|         base.Use(im);
 | |
|         Debug.Log("works!");
 | |
|     }
 | |
| }
 |