Files
BITFALL/Assets/AmplifyAnimationPack/Scripts/Interactables/IInteractable.cs
CortexCore 09037a8958 1
2024-04-15 14:57:50 +08:00

10 lines
239 B
C#

// Amplify Animation Pack - Third-Person Character Controller
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
namespace AmplifyAnimationPack
{
public interface IInteractable
{
void Interact( CharacterClass _player );
}
}