diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2019-11-20 12:45:16 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2019-11-20 12:45:16 -0500 |
commit | df044930bca4252ff6e4814c654a612c6aee2136 (patch) | |
tree | 906eddbbfdecb63e3525657cd4e6f75c8ba91bc3 /src/main/resources | |
parent | ebc33c58c8a3669822a0dba99cbfe8a451782813 (diff) |
[0.1.7 REWRITE] Codebase overhaul.
~ Codebase split into two sub-packages
~ net.transit.network for transfering between objects
~ net.transit.type for type registering and conversion
+ Added new interfaces (INode and ISystem)
+ More documentation
+ (Kinda) Working build
- Removed unnessairy interfaces (IGenerator and IConsumer)
- Removed base types
~ Restructured type system
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fabric.mod.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9bfe73f..918da54 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -15,7 +15,11 @@ "icon": "assets/transit-api/transit.png", "environment": "*", - + + "entrypoints" : { + "main": ["net.transit.InitTransit"] + }, + "depends": { "fabricloader": ">=0.4.0", "fabric": "*" |