Added isValid() method to Card, ability to deal single hands to CardGameManager.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3135 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2004-10-13 19:29:12 +00:00
parent 90af7c794d
commit 9bbd46fa7b
4 changed files with 53 additions and 14 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# $Id: genreceiver,v 1.3 2002/08/20 19:36:43 mdb Exp $
# $Id: genreceiver,v 1.4 2004/10/13 19:29:12 andrzej Exp $
#
# This script is used to generate invocation receiver marshaller and
# unmarshaller classes based on receiver interface definitions.
@@ -72,7 +72,7 @@ while ($srcfile = shift) {
# run javap on the interface class
my $jpcp = (defined $classpath) ? "-classpath $classpath" : "";
my $jpcmd = "javap $jpcp $class";
my $jpcmd = "/usr/local/j2sdk1.4.1/bin/javap $jpcp $class";
# clear out the imports table
%imports = ();
+2 -2
View File
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# $Id: genservice,v 1.5 2002/08/20 19:36:43 mdb Exp $
# $Id: genservice,v 1.6 2004/10/13 19:29:12 andrzej Exp $
#
# This script is used to generate invocation service marshaller and
# unmarshaller classes based on invocation service interface definitions.
@@ -72,7 +72,7 @@ while ($srcfile = shift) {
# run javap on the interface class
my $jpcp = (defined $classpath) ? "-classpath $classpath" : "";
my $jpcmd = "javap $jpcp $class";
my $jpcmd = "/usr/local/j2sdk1.4.1/bin/javap $jpcp $class";
# clear out the imports table
%imports = ();