cs11dotnet7/vscode/Chapter06/PacktLibrary/IPlayable.cs

11 lines
197 B
C#
Raw Normal View History

2022-02-27 20:08:52 +01:00
namespace Packt.Shared;
public interface IPlayable
{
void Play();
void Pause();
void Stop() // default interface implementation
{
WriteLine("Default implementation of Stop.");
}
}