| 11 | import vmfWriter.entity.solidEntity.SolidEntity; |
| 12 | |
| 13 | public interface SourceMap { |
| 14 | |
| 15 | public void setSkyTexture(String skyTexture); |
| 16 | |
| 17 | public void addSolid(Solid solid); |
| 18 | |
| 19 | public void addDetail(Solid... solids); |
| 20 | |
| 21 | /** |
| 22 | * Adds a point entity and returns the just added point entity. |
| 23 | * |
| 24 | * @param p |
| 25 | * @return |
| 26 | */ |
| 27 | public PointEntity addPointEntity(PointEntity p); |
| 28 | |
| 29 | public PointEntity addPointEntity(PointEntity entity, Position position); |
| 30 | |
| 31 | public void addPointEntity(Position p, PointEntity type); |
| 32 | |
| 33 | public void addPointEntitys(Position p, Position end, int space, PointEntity type); |
| 34 | |
| 35 | public void addSolidEntity(SolidEntity solidEnttiy); |
| 36 | |
| 37 | public void setPointToGrid(Position position); |
| 38 | |
| 39 | public void movePointInGridDimension(double x, double y, double z); |
| 40 | |
| 41 | public void movePointExactly(Position offset); |
| 42 | |
| 43 | public void addCustomPointEntity(Position p, String name); |
| 44 | |
| 45 | public ConvertingReport write(File file, SourceGame game) throws IOException; |
| 46 | |
| 47 | public void setCameraPosition(Position origin); |
| 48 | |
| 49 | public void setCameraLook(Position position); |
| 50 | } |
no outgoing calls
no test coverage detected