-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds stub classes for AV8B, M2000 and F15E
- All aircraft related menu items are now only enabled and disabled through containers, making it more expandible by just editing the containers - Fixes aircraft tool selection menu items are not disabled when aircraft is not selected
- Loading branch information
Showing
6 changed files
with
242 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace CoordinateConverter.DCS.Aircraft | ||
{ | ||
public class AV8B : DCSAircraft | ||
{ | ||
public override List<DCSCommand> GetPointActions(CoordinateDataEntry coordinate) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<string> GetPointOptionsForType(string pointTypeStr) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<string> GetPointTypes() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<DCSCommand> GetPostPointActions() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<DCSCommand> GetPrePointActions() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace CoordinateConverter.DCS.Aircraft | ||
{ | ||
public class F15E : DCSAircraft | ||
{ | ||
public override List<DCSCommand> GetPointActions(CoordinateDataEntry coordinate) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<string> GetPointOptionsForType(string pointTypeStr) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<string> GetPointTypes() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<DCSCommand> GetPostPointActions() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override List<DCSCommand> GetPrePointActions() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace CoordinateConverter.DCS.Aircraft | ||
{ | ||
public class M2000 : DCSAircraft | ||
{ | ||
public override List<DCSCommand> GetPointActions(CoordinateDataEntry coordinate) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public override List<string> GetPointOptionsForType(string pointTypeStr) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public override List<string> GetPointTypes() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public override List<DCSCommand> GetPostPointActions() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public override List<DCSCommand> GetPrePointActions() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.