Exemplo n.º 1
0
 public ContainerString(string title, object value)
 {
     this.title        = title;
     this.value        = value.ToString();
     this.useReference = false;
     this.storyIndex   = default;
 }
Exemplo n.º 2
0
 public ContainerString(string title, StoryIndex value)
 {
     this.title        = title;
     this.value        = default;
     this.useReference = true;
     this.storyIndex   = value;
 }