001         package com.croftsoft.apps.chat.model;
002    
003         import com.croftsoft.core.animation.model.ModelAccessor;
004    
005         /*********************************************************************
006         * The base interface for the model of a game world entity.
007         *
008         * @version
009         *   2003-06-11
010         * @since
011         *   2003-06-05
012         * @author
013         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
014         *********************************************************************/
015    
016         public interface  ChatModelAccessor
017           extends ModelAccessor
018         //////////////////////////////////////////////////////////////////////
019         //////////////////////////////////////////////////////////////////////
020         {
021    
022         public String  getAvatarType ( );
023    
024         //////////////////////////////////////////////////////////////////////
025         //////////////////////////////////////////////////////////////////////
026         }