namespace StardewModdingAPI
{
/// Specifies a source containing content that can be loaded.
public enum ContentSource
{
/// Assets in the game's content manager (i.e. XNBs in the game's content folder).
GameContent,
/// XNB files in the current mod's folder.
ModFolder
}
}