/*
 * File: ./REMOTEINTERFACE/_REMOTEGAMESTUB.JAVA
 * From: REMOTE.IDL
 * Date: Thu Jan 21 23:55:04 1999
 *   By: C:\JDK1.2\BIN\IDLTOJ~1.EXE Java IDL 1.2 Nov 10 1997 13:52:11
 */

package RemoteInterface;
public class _RemoteGameStub
	extends org.omg.CORBA.portable.ObjectImpl
    	implements RemoteInterface.RemoteGame {

    public _RemoteGameStub(org.omg.CORBA.portable.Delegate d) {
          super();
          _set_delegate(d);
    }

    private static final String _type_ids[] = {
        "IDL:RemoteInterface/RemoteGame:1.0"
    };

    public String[] _ids() { return (String[]) _type_ids.clone(); }

    //	IDL operations
    //	    Implementation of ::RemoteInterface::RemoteGame::setMove
    public void setMove(RemoteInterface.Move newMove)
 {
           org.omg.CORBA.Request r = _request("setMove");
           org.omg.CORBA.Any _newMove = r.add_in_arg();
           RemoteInterface.MoveHelper.insert(_newMove, newMove);
           r.send_oneway();
   }
    //	    Implementation of ::RemoteInterface::RemoteGame::resetGame
    public void resetGame()
 {
           org.omg.CORBA.Request r = _request("resetGame");
           r.invoke();
   }

};
