Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace World2a
- {
- class Executron
- {
- private IIntroducable entity;
- public IIntroducable Entity
- {
- get { return entity; }
- set { entity = value; }
- }
- public Executron(IIntroducable entity)
- {
- this.entity = entity;
- }
- public void MakeItSpeak()
- {
- Console.WriteLine("----------- Hahah I am the executor. -----------------");
- entity.IntroduceYourSelf();
- Console.WriteLine("----------------------------");
- }
- }
- }
Add Comment
Please, Sign In to add comment