AGS.Editor.DataFileWriter.ViewsWriter.ViewsWriter C# (CSharp) Метод

ViewsWriter() публичный Метод

public ViewsWriter ( BinaryWriter writer, Game game ) : System
writer System.IO.BinaryWriter
game AGS.Types.Game
Результат System
            public ViewsWriter(BinaryWriter writer, Game game)
            {
                this.writer = writer;
                views = new View[game.ViewCount];
                PopulateViews(game.RootViewFolder, game);
            }