Пример #1
0
        ////////////////

        private IntroMovieSet(IntroCutsceneStartProtocol data)
        {
            this.ExteriorShipView = data.ExteriorShipView;
            this.InteriorShipView = data.InteriorShipView;

            this.ExteriorDeckX          = data.ExteriorDeckX;
            this.ExteriorDeckY          = data.ExteriorDeckY;
            this.ExteriorDeckWidth      = data.ExteriorDeckWidth;
            this.ExteriorCrewNPCs       = data.ExteriorCrewNPCs.ToList();
            this.ExteriorCrewCaptainNPC = data.ExteriorCrewNPCs.Last();

            Main.dungeonX = data.DungeonX;
            Main.dungeonY = data.DungeonY;
        }
 internal static IntroMovieSet Create(IntroCutsceneStartProtocol data)
 {
     return(new IntroMovieSet(data));
 }