Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
ben
/
goldfish
réplica de
https://github.com/earwig/goldfish
Seguir
1
Destacar
1
Fork
0
Código
Lanzamientos
0
Actividad
Explorar el Código
Added constructors to Goldfish and Render
They really don't do anything yet.
master
Josh Hofing
hace 12 años
padre
791e6e1fa0
commit
08d9774c50
Se han
modificado 2 ficheros
con
19 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+12
-0
src/Goldfish.java
+7
-0
src/Render.java
+ 12
- 0
src/Goldfish.java
Ver fichero
@@ -1,2 +1,14 @@
public class Goldfish {
private Grid _grid;
private Render _render;
public Goldfish () {
_render = new Render(640, 480);
_grid = new Grid(640, 480);
}
public static void main (String[] args) {
Goldfish g = new Goldfish();
}
}
+ 7
- 0
src/Render.java
Ver fichero
@@ -1,2 +1,9 @@
public class Render {
public Render (int width, int height) {
}
public Render () {
this(100,100);
}
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar