def get_current_mood(sim_info: SimInfo) -> Mood:
        """get_current_mood(sim_info)

        Retrieve the current mood for the specified Sim.

        :param sim_info: The Sim to retrieve the mood of.
        :type sim_info: SimInfo
        :return: The current Mood of the Sim.
        :rtype: Mood
        """
        return sim_info.get_mood()
Beispiel #2
0
 def get_current_mood(sim_info: SimInfo) -> Mood:
     """
         Retrieve the current mood for the specified Sim.
     """
     return sim_info.get_mood()