Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace create_class
- {
- class Program
- {
- static void Main(string[] args)
- {
- Vampire Dracula = new Vampire();
- Console.WriteLine("These will {0}", Dracula.Attack());
- Werewolf Fido = new Werewolf();
- Console.WriteLine("These will {0}", Fido.Attack());
- Zombie Jack = new Zombie();
- Console.WriteLine("These will {0}", Jack.Attack());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment