FSO.Content.ChangeManager.QueueResMod C# (CSharp) Method

QueueResMod() public method

Queues an action to run on a game resource, which will be run later by the game thread.
public QueueResMod ( ResAction action ) : void
action ResAction
return void
        public void QueueResMod(ResAction action)
        {
            lock (ResActionQueue)
            {
                ResActionQueue.Enqueue(action);
            }
        }