9 lines
196 B
C#
9 lines
196 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public interface Damagable
|
|
{
|
|
void ApplyDamage(float value, int ownerIndex, Vector3 hitPos, Transform sender);
|
|
}
|