コード例 #1
0
ファイル: Project.cs プロジェクト: SeoHyeonMyeong/C-_Tutorial
		public Player() {	// 생성자
			Hp.Max = 50;
			Hp.Set();
			Mp.Max = 0;
			Mp.Set();
			Exp.Max = 100;
			Exp.Value = 0;
			level = 1;
			damage = 5;
			damage_increase = 1;
			point = 0;
			speed = 250;
			name = new char[] "유저";
		
		}