6 lines
73 B
C#
Executable file
6 lines
73 B
C#
Executable file
//using UnityEngine;
|
|
|
|
public interface Weapon
|
|
{
|
|
void dealDamage();
|
|
}
|