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.
10 lines
324 B
10 lines
324 B
/** @typedef {import('./shape').Shape} Shape */ |
|
/** @typedef {import('./vector').Vector2D} Vector2D */ |
|
/** |
|
* Update the rotation of the shape. |
|
* |
|
* @param {Shape} shape |
|
*/ |
|
export function updateRotation(shape: Shape): void; |
|
export type Shape = import('./shape').Shape; |
|
export type Vector2D = import('./vector').Vector2D;
|
|
|