Пример #1
0
        public static bool Prefix(ref Color __result, ref NoteType type)
        {
            Color c = ColourManager.GetNoteTypeColourOverride(type);

            if (c != Color.clear)
            {
                __result = c;
                return(false);
            }
            return(true);
        }