beforeBuildClasspath method

  1. @override
Future<List<String>> beforeBuildClasspath(
  1. VersionInfo versionInfo,
  2. String versionId
)
override

Hook called before building the classpath.

versionInfo - Version information versionId - Minecraft version ID Returns initial classpath entries.

Implementation

@override
Future<List<String>> beforeBuildClasspath(
  VersionInfo versionInfo,
  String versionId,
) async {
  // Default implementation does nothing
  return [];
}