
Additional commit content - Set aiStat for testing - Add ai interface script - Add layer and fix physics setting
12 lines
265 B
C#
12 lines
265 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWater
|
|
{
|
|
public interface IDamageable : IAiStat
|
|
{
|
|
public void TakeDamage(AiStat attacker, AiStat defender);
|
|
}
|
|
} |