slifer 0.2.5 → 0.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slifer",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "A game framework made for bun and typescript",
5
5
  "module": "index.ts",
6
6
  "devDependencies": {
package/src/ffi.ts CHANGED
@@ -220,10 +220,6 @@ export const libsdl = dlopen(libSDLImport.default, {
220
220
  SDL_GetScancodeFromName: {
221
221
  args: ["cstring"],
222
222
  returns: "int",
223
- },
224
- SDL_GetMouseState: {
225
- args: ['pointer', 'pointer'],
226
- returns: 'u32'
227
223
  }
228
224
  });
229
225
 
@@ -1,5 +1,6 @@
1
1
  import { libsdl } from "../ffi";
2
2
  import { toArrayBuffer } from "bun:ffi";
3
+
3
4
  /** @internal */
4
5
  export default class Keyboard {
5
6