static void Main(string[] args) { TopicsManager directory = new TopicsManager(); NotesGenerator notes = new NotesGenerator(directory.GetDirectoryLocation("Notes")); notes.ChangeLocation(directory.GetDirectoryLocation("Main")); notes.AddNote(); Console.Read(); }
void Start() { if (false == m_is_second_level) { m_notes_generator = new NotesGenerator(m_beats_per_second, m_span_of_disappear_seconds); } else { m_notes_generator = new NotesGeneratorB(m_beats_per_second, m_span_of_disappear_seconds); } }
public Engin() { loadNotes = new TopicsManager(); notesGenerator = new NotesGenerator(loadNotes.GetDirectoryLocation("Notes")); }