Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. public class LightningBolt : Spell
  2. {
  3.     //Add variables specific to lightning bolts
  4.     public float stunTime = 2;
  5.  
  6.     //Add specific implementation of Cast for lightning bolt
  7.     public override void Cast()
  8.     {
  9.         //Do lightning bolty stuff
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement