Ejemplo n.º 1
0
 //TIPSの解析
 public bool TryParseTips(string arg)
 {
     IsHitEventTop = IsHitEvent = true;
     HitEventArg   = arg;
     HitEventType  = CharData.HitEventType.Tips;
     return(true);
 }
Ejemplo n.º 2
0
 //サウンドの解析
 internal bool TryParseSound(string arg)
 {
     IsHitEventTop = IsHitEvent = true;
     HitEventArg   = arg;
     HitEventType  = CharData.HitEventType.Sound;
     return(true);
 }
Ejemplo n.º 3
0
			//リンクの解析
			public bool TryParseLink(string arg)
			{
				IsHitEventTop = IsHitEvent = true;
				HitEventArg = arg;
				HitEventType = CharData.HitEventType.Link;
				return true;
			}