17 lines
272 B
C#
17 lines
272 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Install : Tool
|
|
{
|
|
// Start is called before the first frame update
|
|
public override void UseTool()
|
|
{
|
|
|
|
}
|
|
public override void ReturnTool()
|
|
{
|
|
|
|
}
|
|
}
|