11 lines
235 B
C#
11 lines
235 B
C#
|
using System;
|
|||
|
|
|||
|
namespace ModTool.Shared
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Flags for different types of content that can be included in a Mod.
|
|||
|
/// </summary>
|
|||
|
[Flags]
|
|||
|
public enum ModContent { Scenes = 1, Assets = 2, Code = 4, Presets = 8 }
|
|||
|
}
|