Seven is the number.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
250 B

using System;
using System.Reflection;
using UdpKit;
using UnityEngine;
public static class BoltNetworkUtils
{
public static Action Combine(this Action self, Action action)
{
return (Action)Delegate.Combine(self, action);
}
}