mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
7 lines
80 B
C#
7 lines
80 B
C#
namespace BugGame.Parts;
|
|
|
|
internal interface IPart
|
|
{
|
|
string Name { get; }
|
|
}
|