create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / models / wind / WindModel.java
1 package net.sf.openrocket.models.wind;
2
3 import net.sf.openrocket.util.Coordinate;
4 import net.sf.openrocket.util.Monitorable;
5
6 public interface WindModel extends Monitorable {
7
8         public Coordinate getWindVelocity(double time, double altitude);
9         
10 }