Skip to content

Commit

Permalink
Complete constant progress provider
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Jul 2, 2024
1 parent d44085f commit c143a6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ yarn_build=3
loader_version=0.15.11

# Mod Properties
mod_version=1.5.0
mod_version=1.5.1
maven_group=net.mcbrawls
mod_id=blueprint

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@ package net.mcbrawls.blueprint.structure

fun interface ProgressProvider {
fun getProgress(): Float

companion object {
val COMPLETE: ProgressProvider = ProgressProvider { 1.0f }
}
}

0 comments on commit c143a6d

Please sign in to comment.