Exemple #1
0
        public Story()
        {
            StoryVar.RegisterTypeService <bool>(new BoolService());
            StoryVar.RegisterTypeService <int>(new IntService());
            StoryVar.RegisterTypeService <double>(new DoubleService());
            StoryVar.RegisterTypeService <string>(new StringService());

            this.Passages = new Dictionary <string, StoryPassage>();

            this.PassageHistory = new List <string>();
        }