001         package com.croftsoft.apps.chat.model;
002    
003         /*********************************************************************
004         * The state of the game.
005         *
006         * @version
007         *   2003-06-18
008         * @since
009         *   2003-06-06
010         * @author
011         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012         *********************************************************************/
013    
014         public interface  ChatGame
015           extends ChatGameAccessor
016         //////////////////////////////////////////////////////////////////////
017         //////////////////////////////////////////////////////////////////////
018         {
019    
020         public ChatWorld  getChatWorld ( );
021    
022         public void  update  ( );
023    
024         //////////////////////////////////////////////////////////////////////
025         //////////////////////////////////////////////////////////////////////
026         }