idraw: World endOfWorld() plus endOfTime

svn: r2300
This commit is contained in:
Matthias Felleisen 2006-02-22 16:52:52 +00:00
parent 201b3cc200
commit 64490a9aea
2 changed files with 8 additions and 2 deletions

View File

@ -117,5 +117,9 @@
(define/provide (endOfTime-native this accs gets privates)
(end-of-time)
(void))
this)
(define/provide (endOfWorld-native this accs gets privates)
(end-of-time)
this)
)

View File

@ -6,7 +6,9 @@ public abstract class World {
public native void bigBang(int width, int height, double s);
public native void endOfTime();
public native World endOfTime();
public native World endOfWorld();
public abstract void onTick();