<?php
/**
* 感情インターフェイス
*/
interface HasEmotion
{
/**
* 感情を取得
*
* @return Emotion
*/
public function getEmotion(): Emotion;
/**
* 感情を更新
*
* @param Emotion $emotion
*/
public function updateEmotion(Emotion $emotion): void;
}