Files
technix/Assets/script/movement/FirePoint.cs
2020-02-17 22:27:07 +00:00

11 lines
199 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FirePoint : MonoBehaviour {
public GameObject b;
void Fire() {
Instantiate(b);
}
}