using TimeMachine;
using TimeMachine.FluxCapacitor;
using Plutonium;
public class BackToTheFuture
{
private TimeMachine delorean;
BackToTheFuture()
{
delorean = new TimeMachine(1.21f);
}
public void Watch()
{
delorean.Travel(new DateTime(1955, 11, 5), "Hill Valley");
Console.WriteLine("Great Scott!");
delorean.RepairMachine();
delorean.Travel(new DateTime(1985, 10, 25), "Hill Valley");
}
public static void main(String[] args)
{
BackToTheFuture film = new BackToTheFuture();
film.Watch();
}
}
using TimeMachine.FluxCapacitor;
using Plutonium;
public class BackToTheFuture
{
private TimeMachine delorean;
BackToTheFuture()
{
delorean = new TimeMachine(1.21f);
}
public void Watch()
{
delorean.Travel(new DateTime(1955, 11, 5), "Hill Valley");
Console.WriteLine("Great Scott!");
delorean.RepairMachine();
delorean.Travel(new DateTime(1985, 10, 25), "Hill Valley");
}
public static void main(String[] args)
{
BackToTheFuture film = new BackToTheFuture();
film.Watch();
}
}