Brother Please end me

This commit is contained in:
Sage The DM 2024-10-30 16:02:50 +01:00
parent 390b59addf
commit 364fa45534
26 changed files with 378 additions and 2 deletions

View file

@ -33,4 +33,21 @@ public class Lesson {
public String getDay() {
return day;
}
public boolean isBreak() {
// Logic if it is between lessons
return false;
}
public boolean isBigBreak() {
// is the break longer than 5 minutes
// But was not the last lesson of the day
// Is not Lunch break
return false;
}
public boolean isTeacherSwitch() {
// is a another teacher in this room
return false;
}
}