feat: basic replay functionality

This commit is contained in:
2025-01-16 04:11:20 +01:00
parent cd03668490
commit 299f6ef3aa
12 changed files with 296 additions and 66 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "reSIMulate: record",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/resimulate/resimulate.py",
"console": "integratedTerminal",
"args": ["record", "-o test.pkl"],
"justMyCode": false
}
]
}