FlatRedBall.Glue.SaveClasses.ReferencedFileSave.ReferencedFileSave C# (CSharp) Method

ReferencedFileSave() public method

public ReferencedFileSave ( ) : System
return System
        public ReferencedFileSave()
        {
            ProjectsToExcludeFrom = new List<string>();
            AddToManagers = true;
            DestroyOnUnload = true;
            Properties = new List<PropertySave>();
            CsvDelimiter = AvailableDelimiters.Comma;
            SourceFileCache = new List<Content.SourceReferencingFile>();
            LoadedAtRuntime = true;
            OpensWith = "<DEFAULT>";

            // September 12, 2012
            // IsSharedStatic used 
            // to default to false.
            // It would be set to true
            // on Entities and false on
            // Screen, but I think it was
            // set to false on Screens just
            // as a holdover from the very early
            // days.  Files need to be static for
            // Entities and GlobalContent.  They could
            // go either way on Screens, but we're going
            // to default them to static for consistency and
            // for the generated GetFile method.
            IsSharedStatic = true;
        }