A game framework written with osu! in mind.
at master 18 lines 510 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4using System; 5 6namespace osu.Framework.Lists 7{ 8 /// <summary> 9 /// Provides an event for notifying about array elements changing. 10 /// </summary> 11 public interface INotifyArrayChanged 12 { 13 /// <summary> 14 /// Invoked when an element of an array is changed. 15 /// </summary> 16 event Action ArrayElementChanged; 17 } 18}