Skip to content
Snippets Groups Projects
Fire.java 208 B
Newer Older
  • Learn to ignore specific revisions
  • melizzzz's avatar
    try
    melizzzz committed
    package model;
    
    
    public class Fire implements Entity{
        
    
        @Override
        public void nextTurn() {
            // Récupérer la position
            // Ajouter un feu à x + 1 y, x y+1, x+1 y-1, x-1 y+1 
        }
    
    melizzzz's avatar
    try
    melizzzz committed
    }