Fix namespace for R3 ext

This commit is contained in:
hadashiA 2024-02-02 17:31:34 +09:00
parent b912fc6324
commit 23e52d1990

View File

@ -3,7 +3,7 @@ using System.Collections.Specialized;
using System.Threading;
using R3;
namespace ObservableCollections.R3;
namespace ObservableCollections;
public readonly record struct CollectionAddEvent<T>(int Index, T Value);
public readonly record struct CollectionRemoveEvent<T>(int Index, T Value);