Пример #1
0
 public NoteData(TaikoNoteType tnt, string offset, uint noteLength = 0x00000000)
 {
     noteOffsetString = offset;
     noteOffset       = HelperFunctions.ParseFloat(offset);
     notelength       = noteLength;
     type             = tnt;
 }
Пример #2
0
        public static bool needsLength(TaikoNoteType type)
        {
            switch ((int)type)
            {
            case 6:
            case 9:
            case 10:
            case 0xC:
                return(true);

            default:
                return(false);
            }
        }