15 lines
326 B
C#
15 lines
326 B
C#
using System.Collections;
|
|
|
|
namespace RoR2.ContentManagement;
|
|
|
|
public interface IContentPackProvider
|
|
{
|
|
string identifier { get; }
|
|
|
|
IEnumerator LoadStaticContentAsync(LoadStaticContentAsyncArgs args);
|
|
|
|
IEnumerator GenerateContentPackAsync(GetContentPackAsyncArgs args);
|
|
|
|
IEnumerator FinalizeAsync(FinalizeAsyncArgs args);
|
|
}
|