Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace create_class
- {
- class Zombie: Monster
- {
- public override string Attack()
- {
- return "chew your brains";
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment