This commit is contained in:
Dorian
2026-04-11 19:46:37 +01:00
parent 52752a92bf
commit 32e6c19f72
44 changed files with 5511 additions and 39 deletions
+10
View File
@@ -0,0 +1,10 @@
export * from './types'
export * from './constants'
export { updatePhysics, applyMovement, enforcePushBox, updateFacing } from './physics'
export { updateStateMachine, startComboMove, enterHitstun, enterBlockstun, enterKO, enterWin } from './state-machine'
export { checkHit, applyHit, resetCombo } from './combat'
export type { HitResult } from './combat'
export { MOVES, COMBOS, matchCombo } from './moves'
export { spawnFireball, updateProjectiles, clearAllProjectiles } from './projectiles'
export { createBotBridge, buildGameState } from './bot-bridge'
export type { BotBridge, BotAction, ArcadeGameState } from './bot-bridge'