I have the following code in a console program.
interface I { ...; string X { get; }; string Y {get; }; string Z {get; } ...}
class A : I {...}
class B : I {...}
class C : I {...}
The program accept command line parameters like test.exe b -x 10 -z 20. And it will create an instant of B and set X to 10, Z to 20.
How to implement this using unity? This may be a newbie question.