init: scorometer from poc

This commit is contained in:
GitBluub
2022-12-18 00:52:49 +09:00
parent 56fdadc705
commit 3891ad9dfd
20 changed files with 448 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
class Note:
def __init__(self, start_time, data) -> None:
self.__start_time = start_time
self.__data = data
def get_start_time(self):
return self.__start_time
def get_data(self):
return self.__data