lib-curveball 1.0.0

Curve generating utility for Neverball
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2025 Jordan Johnson
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! # Curve generator tool for Neverball
//!
//! This crate is a library for generating curves for Neverball levels.
//!
//! This is the crate `curveball` uses to generate all of its curves. This crate is published as a
//! standalone library for users who would like to use it in their own scripts.
//!
//! You may be interested in example code provided in the original repository under
//! `lib-curveball/examples/`.

pub mod curve;

pub mod map;