Remove empty lines

This commit is contained in:
MatiasManevi
2026-02-24 15:08:57 -03:00
parent 3bbb548991
commit 1db1dfe6a0
-4
View File
@@ -164,16 +164,12 @@ The object you get is a JavaScript proxy interface generated by [Emscriptens
export interface MjContactVec extends ClassHandle {
/** Appends a new element to the end of the vector, increasing its length by one. */
push_back(_0: MjContact): void;
/** Resizes the vector to contain the specified number of elements, filling new slots with the provided value. */
resize(_0: number, _1: MjContact): void;
/** Returns the total number of elements currently stored in the vector. */
size(): number;
/** Retrieves the element at the specified index, or returns undefined if the index is out of bounds. */
get(_0: number): MjContact | undefined;
/** Overwrites the element at the specified index; returns true if successful or false if the index is invalid. */
set(_0: number, _1: MjContact): boolean;
}