create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / models / atmosphere / AtmosphericModel.java
1 package net.sf.openrocket.models.atmosphere;
2
3 import net.sf.openrocket.util.Monitorable;
4
5 public interface AtmosphericModel extends Monitorable {
6
7         public AtmosphericConditions getConditions(double altitude);
8         
9 }