Implemented Strategy Pattern

This commit is contained in:
2019-09-11 15:53:52 -06:00
parent 58a197afbd
commit 6e42363daf
15 changed files with 169 additions and 88 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace Tello_Drone
{
public interface IMissionList
{
List<(string, IMissions)> GetMissionList();
}
}