FlatRedBall.Arrow.DataTypes.ArrowProjectSave.ArrowProjectSave C# (CSharp) Method

ArrowProjectSave() public method

public ArrowProjectSave ( ) : FlatRedBall.Content.Scene
return FlatRedBall.Content.Scene
        public ArrowProjectSave()
        {
            Elements = new ObservableCollection<ArrowElementSave>();
            Intents = new ObservableCollection<ArrowIntentSave>();
            ResolutionSettings = new ResolutionSettings();

            ResolutionSettings.Width = 800;
            ResolutionSettings.Height = 480;

            CameraSave = new CameraSave();
            CameraSave.Orthogonal = true;
            CameraSave.OrthogonalWidth = ResolutionSettings.Width;
            CameraSave.OrthogonalHeight = ResolutionSettings.Height;
        }