コード例 #1
0
ファイル: DrawLayer.cs プロジェクト: sondirn/Solis
 public void RemoveComponent(DrawableComponent component)
 {
     _components.Remove(component);
 }
コード例 #2
0
ファイル: DrawLayer.cs プロジェクト: sondirn/Solis
 public void AddComponent(DrawableComponent component)
 {
     _components.Add(component);
 }