Started work on a beat data structure

This commit is contained in:
2021-08-06 21:42:59 +02:00
parent 3eb0eb4437
commit fdfad0b900
4 changed files with 57 additions and 0 deletions

8
src/BeatUnit.ts Normal file
View File

@@ -0,0 +1,8 @@
export default class BeatUnit {
constructor() {
}
stringify(): string {
return "U";
}
}