namespace CinemaDirector.Helpers { /// /// Interface for any item that needs to bake results. /// interface IBakeable { void Bake(); } }