mjc65

were

May 5th, 2020
812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace create_class
  6. {
  7.     class Werewolf : Monster
  8.     {
  9.         public override string Attack()
  10.         {
  11.             return "bite yer legs";
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment