import { IAsset } from '../../interface/asset.interface';
/**
 * The Alien Location Model
 */
export interface MissileLaunchModel {
    /**
     * Rotation
     */
    rotation: number;
    /**
     * position
     */
    position: IAsset;
}
