Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Entity Object Builders #67

Merged
merged 40 commits into from Oct 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6509597
Add entity library.
Platymemo Jan 18, 2022
340102f
Add entity attributes module.
Platymemo Jan 18, 2022
51af462
Add entity types module.
Platymemo Jan 18, 2022
3620a04
Add POI module.
Platymemo Jan 18, 2022
35e3dd3
Add villager api module.
Platymemo Jan 18, 2022
9bae817
Fix headers for Fabric derived classes.
Platymemo Jan 18, 2022
797c606
Merge entity_attributes and entity_types modules into entity module.
Platymemo Jan 19, 2022
ccd9a02
Allowed the creation of unregistered Points of Interest, and clarifie…
Platymemo Jan 19, 2022
69ddbb8
Small edits
Platymemo Jan 19, 2022
c9a65ba
Restructure testmods in entity library
Platymemo Jan 25, 2022
fa23d56
Allow adding blockstates to existing points of interest
Platymemo Jan 25, 2022
4585a02
Added testmod to POI module
Platymemo Jan 25, 2022
c41da97
Merge remote-tracking branch 'base/1.18' into 1.18
Platymemo Jun 19, 2022
ab41383
update entity modules
Platymemo Jun 19, 2022
97e04e6
apply licenses
Platymemo Jun 19, 2022
5a8e4fe
Add minecart comparator logic API
Platymemo Jun 23, 2022
101c409
Merge remote-tracking branch 'base/1.18' into 1.18
Platymemo Jun 23, 2022
721231f
Add entity library testmod
Platymemo Jun 23, 2022
21053f8
Merge remote-tracking branch 'base/1.18' into 1.18
Platymemo Jun 26, 2022
81fd380
Add vehicle module and boat type registry
Platymemo Jun 26, 2022
8fd233c
Remove boat type registry
Platymemo Jun 26, 2022
aa68d74
Merge remote-tracking branch 'QuiltMC/1.19' into 1.18+entity-object-b…
Platymemo Aug 6, 2022
f32aadb
update POI
Platymemo Aug 7, 2022
db181da
update villager
Platymemo Aug 7, 2022
680f369
update entity object builders
Platymemo Aug 7, 2022
727344a
apply licenses
Platymemo Aug 7, 2022
42cc334
Apply suggestions
Platymemo Aug 8, 2022
91a7caa
remove testmod icons
Platymemo Aug 8, 2022
b6eac77
rename POI initializer
Platymemo Aug 8, 2022
8a8abdb
Apply suggestions
Platymemo Aug 22, 2022
a82a9c2
Make villager trade factories accessible
Platymemo Aug 22, 2022
d90b11f
Merge remote-tracking branch 'QuiltMC/1.19' into 1.18+entity-object-b…
Platymemo Aug 22, 2022
05f2355
Merge branch '1.19' into 1.18
TheGlitch76 Aug 28, 2022
8a9bfc8
Merge branch '1.19' into 1.18
EnnuiL Sep 16, 2022
481cf66
Merge branch '1.19' into 1.18
TheGlitch76 Sep 26, 2022
81af50e
Merge branch '1.19' into 1.18
EnnuiL Sep 28, 2022
310e485
Apply suggestions
Platymemo Oct 5, 2022
d3feb32
checkstyle, docs, and name changes
Platymemo Oct 6, 2022
a67850d
un-inject internal interface
Platymemo Oct 6, 2022
d994c39
Merge branch '1.19' into 1.18
EnnuiL Oct 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions library/entity/entity/build.gradle
@@ -0,0 +1,18 @@
plugins {
id("qsl.module")
}

qslModule {
name = "Quilt Entity API"
moduleName = "entity"
id = "quilt_entity"
description = "Base module for creating and registering entity attributes and types."
library = "entity"
moduleDependencies {
core {
api("resource_loader")
testmodOnly("qsl_base")
}
}
accessWidener()
}