From c368e68d2d22fdfa68d2a917be992160753df2ec Mon Sep 17 00:00:00 2001 From: Sudhir Chebiyyam Date: Sun, 29 Dec 2024 12:11:08 -0800 Subject: [PATCH] Add a method that returns the 2910 mission statement --- Conventions.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Conventions.java b/Conventions.java index f0f8406..b037393 100644 --- a/Conventions.java +++ b/Conventions.java @@ -26,4 +26,8 @@ public enum EVENT { // enums use SCREAMING_SNAKE_CASE INDIANA_ROBOTICS_INVITATIONAL, CHEZY_CHAMPS } + + public String getTeamMissionStatement() { + return "Inspire through excellence, engage through interesting fun stuff"; + } }