The topic in 2021 is SPACE
https://jaenis.ch/hobbies/coding/demos/js13kgames/2021/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
405 B
11 lines
405 B
/** @typedef {import('./shape').Shape} Shape */ |
|
/** @typedef {import('./vector').Vector2D} Vector2D */ |
|
/** |
|
* Update the position of the shape. |
|
* |
|
* @param {Shape} shape |
|
* @param {Vector2D} [g=gravity] |
|
*/ |
|
export function updatePosition(shape: Shape, g?: import("./vector.js").Vector2D | undefined): void; |
|
export type Shape = import('./shape').Shape; |
|
export type Vector2D = import('./vector').Vector2D;
|
|
|