using System; namespace ModTool.Shared { /// /// Flags for different types of content that can be included in a Mod. /// [Flags] public enum ModContent { Scenes = 1, Assets = 2, Code = 4, Presets = 8 } }