public ConversationEditorViewModel(StoryManager storyManager, string initialText = "")
 {
     this.storyManager = storyManager;
     this.Text         = initialText;
 }
예제 #2
0
 public MainWindowViewModel(StoryManager storyManager)
 {
     this.storyManager = storyManager ?? throw new ArgumentNullException(nameof(storyManager));
 }
예제 #3
0
 public App()
 {
     this.storyManager = new StoryManager(new JavaScriptFileBuilder());
 }