SunsetHigh.Room.enqueueObject C# (CSharp) Method

enqueueObject() public method

Adds the object o to any appropriate lists if it is an instance of Sprite, Character, or IInteractable. Use this method to modify the lists.
public enqueueObject ( object o ) : void
o object The object this room contains.
return void
        public void enqueueObject(object o)
        {
            addItemsSink.Add(o);
        }