// WARNING: This file is auto-generated and any changes to it will be overwritten import lang.stride.*; import java.util.*; import greenfoot.*; /** * */ public class Ameise extends Actor { private String name; /** * */ public Ameise(String name) { this.name = name; } /** * Act - do whatever the Ameise wants to do. This method is called whenever the 'Act' or 'Run' button gets pressed in the environment. */ public void act() { } /** * */ public String getName() { return this.name; } }