We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a00f13 commit 9cbbbefCopy full SHA for 9cbbbef
StrategyExample/People/IPeople.cs
@@ -9,5 +9,6 @@ namespace StrategyExample.People
9
internal interface IPeople
10
{
11
void ShowInfo();
12
+ Inventory GetInventory();
13
}
14
StrategyExample/Program.cs
@@ -10,7 +10,7 @@ namespace StrategyExample
internal class Program
- public static List<PeopleBase> characters = new List<PeopleBase>();
+ public static List<IPeople> characters = new List<IPeople>();
15
public static void Main(string[] args)
16
0 commit comments