Abdula_2314124

Untitled

Mar 2nd, 2024
820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. namespace OOP_SecondPart
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Shifle ak_47 = new Shifle();
  10.             Lazer lazer = new Lazer();
  11.             Gun pistol = new Gun();
  12.            
  13.             pistol.Shoot();
  14.             ak_47.Shoot();
  15.             lazer.Shoot();
  16.         }
  17.     }
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment