initial commit, hope i didnt push any keys :P

This commit is contained in:
anne
2023-02-07 17:46:01 +01:00
commit 1416a35df1
362 changed files with 7234 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
extends Resource
class_name Alarm
export(bool) var active = true # Alarm on or off
export(Resource) var moment = Moment.new() # Time when its supposed to go off
export(bool) var snooze = true # If alarm is snoozable
export(bool) var speak_time := true
export(bool) var play_music := true
export(bool) var override_weather_music = false
export(Constants.WEATHER) var weather_music = Constants.WEATHER.SUNNY