mirror of
https://gitgud.io/LonelyRain/rjw-quirks.git
synced 2024-08-15 00:03:31 +00:00
16 lines
No EOL
428 B
C#
16 lines
No EOL
428 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rjwquirks.Modules.Shared
|
|
{
|
|
/// <summary>
|
|
/// This interface designates that a class is ment to be included in a def and
|
|
/// instantiated by the Rimworld when the def is loaded
|
|
/// </summary>
|
|
public interface IDefPart
|
|
{
|
|
/// <summary>
|
|
/// Needed to be called explicidly in the def's ConfigErrors()
|
|
/// </summary>
|
|
IEnumerable<string> ConfigErrors();
|
|
}
|
|
} |