Example #1
0
 public void RemoveOnFireUpdateDelegate(OnFireUpdate del)
 {
     this.OnFireUpdateDelegates -= del;
 }
Example #2
0
 public void SetOnFireUpdateDelegate(OnFireUpdate del)
 {
     this.OnFireUpdateDelegates = del;
 }
Example #3
0
 public void AddOnFireUpdateDelegate(OnFireUpdate del)
 {
     this.OnFireUpdateDelegates += del;
 }
		public void RemoveOnFireUpdateDelegate(OnFireUpdate del)
		{
			this.OnFireUpdateDelegates -= del;
		}
		public void SetOnFireUpdateDelegate(OnFireUpdate del)
		{
			this.OnFireUpdateDelegates = del;
		}
		public void AddOnFireUpdateDelegate(OnFireUpdate del)
		{
			this.OnFireUpdateDelegates += del;
		}