move wayfinder files to Flumi folder

This commit is contained in:
Face
2025-08-02 14:18:14 +03:00
parent 8fbabdd01a
commit e575974721
442 changed files with 6 additions and 188 deletions

View File

@@ -0,0 +1,19 @@
class_name ICalendarView
extends RefCounted
## A view that dictates how a calendar should be displayed (i.e. MonthView or YearView).
## The calendar that this view is a part of.
var calendar: Calendar
## When the user clicks the previous button (i.e. go to the previous year).
func previous():
pass
## When the user clicks the next button (i.e. go to the next year).
func next():
pass
## Update the view to reflect the selected date.
func refresh():
pass