mirror of
https://github.com/opelly27/Java-N-Body-Simulation.git
synced 2026-05-19 23:18:34 +00:00
.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import java.util.ArrayList;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import javax.imageio.ImageIO;
|
||||
|
||||
public class SpaceRenderer implements Runnable {
|
||||
|
||||
Space workingSpace;
|
||||
|
||||
public SpaceRenderer(Space inSpace) {
|
||||
workingSpace = inSpace;
|
||||
}
|
||||
|
||||
public void run(){
|
||||
|
||||
}
|
||||
|
||||
public static void main(String[] args){
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user