LitTournamentsAPI api = LitTournamentsAPI.getInstance();
// Get the tournaments that uses this objective
List<Tournament> tournaments = api.getTournamentHandler().getTournaments(BlockBreakTournament.class);
// Or you can get a tournament with a id
// Argumant is the name of the yml file
Tournament tournament = api.getTournamentHandler().getTournament("blockBreak");
// It will return null, if there is no tournament with that id.
if (tournament == null) return;
// Add points to player
api.getPointHandler().addPoint(UUID.randomUUID(), tournament, 10);