Advertisement
OwlyOwl

LightningBolt

Aug 21st, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Security.Principal;
  4. using UnityEngine;
  5.  
  6. public class LightningBolt : Weapon
  7. {
  8.    public override void Shoot (Transform shootPoint)
  9.     {
  10.         Instantiate(Bullet, shootPoint.position, Quaternion.identity);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement