W1thr

UZI Weapon

Jul 15th, 2021
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1. using UnityEngine;
  2.  
  3. public class UZI : Weapon
  4. {
  5.     public override void Shoot(Transform shootPoint)
  6.     {
  7.         Instantiate(Bullet, shootPoint.position, Quaternion.identity);
  8.     }
  9. }
Add Comment
Please, Sign In to add comment