C#
프로퍼티
가게주인
2022. 6. 14. 10:14
해당 object의 특징.
첫글자는 대문자로 작성
public int Hp
{
get{return hp;}
set{
hp = value;
if(hp<=0)
{
Die()
}
}
}
이런 식?