Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace OOP_SecondPart
- {
- class Program
- {
- static void Main(string[] args)
- {
- Shifle ak_47 = new Shifle();
- Lazer lazer = new Lazer();
- Gun pistol = new Gun();
- pistol.Shoot();
- ak_47.Shoot();
- lazer.Shoot();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment