Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Kawaii
  5. {
  6.     public class Program
  7.     {
  8.         public static void Main(string[] args)
  9.         {
  10.             Cutie azusa = new Cutie("Azusa");
  11.  
  12.             azusa.AddSkinFeature(new Tanlines());
  13.         }
  14.     }
  15.  
  16.     public class Cutie
  17.     {
  18.         public string Name { get; set; }
  19.         public Head Head { get; set; }
  20.         private List<SkinFeatures> SkinFeatures = new List<SkinFeatures>();
  21.  
  22.         public Cutie()
  23.         {
  24.             Name = "Ikutiepie";
  25.         }
  26.  
  27.         public Cutie(string name)
  28.         {
  29.             Name = name;
  30.         }
  31.  
  32.         public void AddSkinFeature(SkinFeatures feature)
  33.         {
  34.             SkinFeatures.Add(feature);
  35.         }
  36.  
  37.         public void RemoveSkinFeature(SkinFeatures feature)
  38.         {
  39.             SkinFeatures.Remove(feature);
  40.         }
  41.     }
  42.  
  43.     public class SkinFeatures
  44.     {
  45.  
  46.     }
  47.  
  48.     public class Tanlines : SkinFeatures
  49.     {
  50.  
  51.     }
  52.  
  53.     public class Head
  54.     {
  55.  
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement