public LogSystem(Contexts contexts, ILogDrive log) : base(contexts.game)
 {
     _contexts = contexts;
     _logDrive = log;
 }
 public DrivesEntry(ITimeDrive time, ILogDrive log, IInputDrive input)
 {
     Time  = time;
     Log   = log;
     Input = input;
 }