Beispiel #1
0
 public Motherboard(Cpu cpu, VideoCard videoCard, IRam ram)
 {
     cpu.AttachTo(this);
     this.Ram = ram;
     this.VideoCard = videoCard;
 }
Beispiel #2
0
 public Motherboard(Cpu cpu, IRam ram, VideoCard videoCard)
 {
     cpu.AttachTo(this);
     this.Ram       = ram;
     this.VideoCard = videoCard;
 }
Beispiel #3
0
 public MotherBoard(Cpu cpu, RAM ram, IDrawable video)
 {
     cpu.AttachTo(this);
     this.ramOnTheBoard       = ram;
     this.integratedVideoCard = video;
 }
 public MotherBoard(Cpu cpu, RAM ram, IDrawable video)
 {
     cpu.AttachTo(this);
     this.ramOnTheBoard = ram;
     this.integratedVideoCard = video;
 }