Просмотр исходного кода

Some methods that Render is going to need.

master
Josh Hofing 11 лет назад
Родитель
Сommit
7c49ec40c8
1 измененных файлов: 26 добавлений и 0 удалений
  1. +26
    -0
      src/Render.java

+ 26
- 0
src/Render.java Просмотреть файл

@@ -1,3 +1,6 @@

import java.awt.Color;

public class Render {
public Render (int width, int height) {
}
@@ -6,4 +9,27 @@ public class Render {
this(100,100);
}



/**
* Render a color to a position
*
* This should draw to a buffer, which should be
* rendered with render()
*
* @arg x The x coordinate
* @arg y The y coordinate
* @arg c The color to draw
*/
public void draw (int x, int y, Color c) {

}

/**
* Renders the stored buffer to the screen.
*/
public void render () {
}

}

Загрузка…
Отмена
Сохранить