/* * Burn.java * Created: April 18, 2005 * Modified by: * Description: Grassfire simulator for Programming Assignment 8 * CS111 A1 Spring 2005 */ package program8; public class Burn { // These are the constants defined for green, yellow, and burnt grass static final int GREEN = -16711936; static final int YELLOW = -256; static final int BURNT = 0; /* This is the method you need to write */ public static void fire(int[][] lawn, int x, int y){ return; } }