FSO.HIT.HITThread.LoadHitlist C# (CSharp) Method

LoadHitlist() public method

public LoadHitlist ( uint id ) : void
id uint
return void
        public void LoadHitlist(uint id)
        {
            Hitlist = audContent.GetHitlist(id);
        }

Usage Example

Ejemplo n.º 1
0
        /// <summary>
        /// Choose a global hitlist, or 0 for the one local to the track (source: defaultsyms.txt).
        /// </summary>
        public static HITResult SmartSetList(HITThread thread)
        { //sets the hitlist
            var src = thread.ReadByte();

            thread.LoadHitlist((uint)thread.ReadVar(src));

            return(HITResult.CONTINUE);
        }
All Usage Examples Of FSO.HIT.HITThread::LoadHitlist