technix/Assets/script/movement/FirePoint.cs

11 lines
199 B
C#
Raw Normal View History

2020-02-17 22:27:07 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FirePoint : MonoBehaviour {
public GameObject b;
void Fire() {
Instantiate(b);
}
}