10 lines
239 B
C#
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 );
|
|||
|
}
|
|||
|
}
|