diff --git a/src/loaders/fabric/fabric-developer.ts b/src/loaders/fabric/fabric-developer.ts new file mode 100644 index 0000000..105ddbf --- /dev/null +++ b/src/loaders/fabric/fabric-developer.ts @@ -0,0 +1,16 @@ +import { FabricContactInformation } from "./fabric-contact-information"; + +/** + * Represents an author or contributor of a Fabric mod project. + */ +export interface FabricDeveloper { + /** + * The real name, or username, of the person. + */ + name: string; + + /** + * The contact information for the person. + */ + contact?: FabricContactInformation; +}