您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
599 B
25 行
599 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Unity.Multiplayer.Samples.BossRoom.Shared.Infrastructure
|
|
{
|
|
public class DisposableGroup : IDisposable
|
|
{
|
|
readonly List<IDisposable> m_Disposables = new List<IDisposable>();
|
|
|
|
public void Dispose()
|
|
{
|
|
foreach (var disposable in m_Disposables)
|
|
{
|
|
disposable.Dispose();
|
|
}
|
|
|
|
m_Disposables.Clear();
|
|
}
|
|
|
|
public void Add(IDisposable disposable)
|
|
{
|
|
m_Disposables.Add(disposable);
|
|
}
|
|
}
|
|
}
|