mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
8 lines
109 B
C#
8 lines
109 B
C#
namespace BugGame.Parts;
|
|
|
|
internal interface IPart
|
|
{
|
|
string Name { get; }
|
|
bool IsComplete { get; }
|
|
}
|