RiftMayhem/Assets/Scripts/Networking/NetworkedAreaOfEffectOverTimeWithTickEvent.cs
Pedro Gomes 6847241e83 Multiple Updates
- ALOT of new icons
- Network Area of EffectOverTime With Tick Event ability type
- Movement Speed modifier effect
- Vampire class signature ability
- vampire new ultimate ability
2024-07-29 20:22:18 +01:00

16 lines
465 B
C#

using Photon.Pun;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public class NetworkedAreaOfEffectOverTimeWithTickEvent : NetworkedAreaOfEffectOverTime
{
public UnityEvent<PhotonView, Taggable, List<Taggable>> onTickHappened = new UnityEvent<PhotonView, Taggable, List<Taggable>>();
protected override void OnTickPerformed()
{
onTickHappened.Invoke(owner, ownerTag, targets);
}
}