This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
ben
/
goldfish
огледало од
https://github.com/earwig/goldfish
Прати
1
Волим
1
Креирај огранак
0
Код
Издања
0
Activity
Преглед изворни кода
Added constructors to Goldfish and Render
They really don't do anything yet.
master
Josh Hofing
пре 12 година
родитељ
791e6e1fa0
комит
08d9774c50
2 измењених фајлова
са
19 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
src/Goldfish.java
+7
-0
src/Render.java
+ 12
- 0
src/Goldfish.java
Прегледај датотеку
@@ -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
Прегледај датотеку
@@ -1,2 +1,9 @@
public class Render {
public Render (int width, int height) {
}
public Render () {
this(100,100);
}
}
Write
Preview
Loading…
Откажи
Сачувај