LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/IShockableWithGun.cs

21 lines
354 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using GameNetcodeStuff;
using Unity.Netcode;
using UnityEngine;
public interface IShockableWithGun
{
float GetDifficultyMultiplier();
Vector3 GetShockablePosition();
Transform GetShockableTransform();
NetworkObject GetNetworkObject();
bool CanBeShocked();
void StopShockingWithGun();
void ShockWithGun(PlayerControllerB shockedByPlayer);
}