Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by Andy ( 14 years ago )
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package de.hska.iwii.i2.superdrawer.model;
public interface ModelInterface {
ArrayList<Figure> scene;
public Model();
public void addFigure(Figure newFigure);
public Figure[] getScene();
public void resetScene();
}
Revise this Paste
Parent: 50229