using System.Collections.Generic; namespace rjwquirks.Modules.Shared { /// /// This interface designates that a class is ment to be included in a def and /// instantiated by the Rimworld when the def is loaded /// public interface IDefPart { /// /// Needed to be called explicidly in the def's ConfigErrors() /// IEnumerable ConfigErrors(); } }