示例#1
0
    public void RemoveLazyUpdate(ILazyUpdate lazyUpdate, UpdateChannelType fromChannel)
    {
        int index = (int)fromChannel;

        _updateChannels[index].UpdateList.Remove(lazyUpdate);
    }
示例#2
0
    public void AddLazyUpdate(ILazyUpdate lazyUpdate, UpdateChannelType toChannel)
    {
        int index = (int)toChannel;

        _updateChannels[index].UpdateList.Add(lazyUpdate);
    }