First basic data in API object
This commit is contained in:
		| @@ -1,7 +1,22 @@ | ||||
| package net.tomatentum.marinara; | ||||
|  | ||||
| import net.tomatentum.marinara.registry.InteractionRegistry; | ||||
| import net.tomatentum.marinara.wrapper.LibraryWrapper; | ||||
|  | ||||
| public class Marinara { | ||||
|     public static Marinara load() { | ||||
|          | ||||
|      | ||||
|     public static Marinara load(LibraryWrapper wrapper) { | ||||
|         InteractionRegistry registry = new InteractionRegistry(wrapper); | ||||
|         return new Marinara(registry); | ||||
|     } | ||||
|  | ||||
|     private InteractionRegistry registry; | ||||
|  | ||||
|     private Marinara(InteractionRegistry registry) { | ||||
|         this.registry = registry; | ||||
|     } | ||||
|  | ||||
|     public InteractionRegistry getRegistry() { | ||||
|         return registry; | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user