This commit is contained in:
2025-09-03 22:50:32 -04:00
parent 46e7b60ade
commit b3e040f03f
8 changed files with 88 additions and 33 deletions

View File

@@ -0,0 +1,5 @@
# 2025-09-03-224857
The backend has a pretty good abstraction of a `Game`, that it can swap in implemenations for.
The frontend is still mostly hardcoded to the test `simple` game.
Will need to refine the concept of `Game` to include the necessary components of displaying and interacting with a game.

7
notes/newfile Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
ts=$(date +"%Y-%m-%d-%H%M%S")
file=./notes/$ts.md
touch $file
echo -e "# $ts\n" > $file
echo "$file:end"
code --goto "$file:2"