mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
11 lines
197 B
C#
11 lines
197 B
C#
|
|
namespace Packt.Shared;
|
|||
|
|
|
|||
|
|
public interface IPlayable
|
|||
|
|
{
|
|||
|
|
void Play();
|
|||
|
|
void Pause();
|
|||
|
|
void Stop() // default interface implementation
|
|||
|
|
{
|
|||
|
|
WriteLine("Default implementation of Stop.");
|
|||
|
|
}
|
|||
|
|
}
|