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

4 years ago
  1. using System;
  2. using System.Reflection;
  3. using UdpKit;
  4. using UnityEngine;
  5. public static class BoltNetworkUtils
  6. {
  7. public static Action Combine(this Action self, Action action)
  8. {
  9. return (Action)Delegate.Combine(self, action);
  10. }
  11. }