예제 #1
0
파일: Vinove.cs 프로젝트: 3lueDahlia/Vinove
        ////////////////////////////////////////////////////////////////////////
        /// Func
        ///

        /////////////////////////////
        /// Initialize
        public Vinove()
        {
            _scenes  = new List <VinoveScene>();
            _branchs = new List <VinoveBranch>();
            _merges  = new List <VinoveMerge>();

            _uids = new List <string>();

            _speakerNames            = new List <string>();
            _speakerIllustrations    = new VinoveDictionary();
            _backgroundIllustrations = new VinoveDictionary();
        }
예제 #2
0
        public VinoveGamedat(Vinove _saveVinove)
        {
            _fileDir  = _saveVinove.FileDir;
            _fileName = _saveVinove.FileName;

            _uids       = _saveVinove.UIDs;
            _starterUID = _saveVinove.StarterUID;

            _scenes  = _saveVinove.Scene;
            _branchs = _saveVinove.Branchs;
            _merges  = _saveVinove.Merges;

            _speakerNames            = _saveVinove.SpeakerNames;
            _speakerIllustrations    = _saveVinove.SpeakerIllustrations;
            _backgroundIllustrations = _saveVinove.BackgroundIllustrations;
        }