fr.jeanf.eventsystem 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,12 +3,8 @@ using UnityEngine.Serialization;
|
|
|
3
3
|
|
|
4
4
|
namespace jeanf.EventSystem
|
|
5
5
|
{
|
|
6
|
-
public
|
|
6
|
+
public interface EventSender
|
|
7
7
|
{
|
|
8
|
-
|
|
9
|
-
public StringEventChannelSO _stringMessageChannel;
|
|
10
|
-
public BoolEventChannelSO _boolMessageChannel;
|
|
11
|
-
public IntEventChannelSO _intMessageChannel;
|
|
12
|
-
public VoidEventChannelSO _voidMessageChannel;
|
|
8
|
+
StringEventChannelSO stringMessageChannel { get; set; }
|
|
13
9
|
}
|
|
14
10
|
}
|
package/package.json
CHANGED