예제 #1
0
파일: Cat.cs 프로젝트: Dilirion/HomeWork1
 public Cat(int age)
 {
     _health = 5;
     _age = age;
     Color = new CatColor();
 }
예제 #2
0
파일: Cat.cs 프로젝트: Zulcom/ikit-mita-hw1
 public Cat(CatColor c, string a)
 {
     Color = c;
     Age   = a;
 }
예제 #3
0
파일: Cat.cs 프로젝트: Dilirion/HomeWork1
 public Cat(int age)
 {
     _health = 5;
     _age    = age;
     Color   = new CatColor();
 }