Esempio n. 1
0
 //Gets the type of the hitobject at the index
 public HitObjectType GetHitObjectType(int index)
 {
     return(HitObjectParser.GetHitObjectType(hitobjects[index]));
 }
Esempio n. 2
0
        //The two methods below use HitObjectParser to perform the operation

        //Gets the property requested from the hitobject at the index
        public string GetProperty(int index, string property)
        {
            return(HitObjectParser.GetProperty(hitobjects[index], property));
        }