001/**
002 * 
003 */
004package com.fs.starfarer.api.campaign.comm;
005
006
007public enum MessagePriority {
008        DELIVER_IMMEDIATELY(1000, 10000),
009        ENSURE_DELIVERY(1000, 10000),
010        SECTOR(1000, 28),
011        CLUSTER(10, 14),
012        SYSTEM(0, 7),
013        ;
014        
015        private float maxRangeLightYears;
016        private float broadcastDurationDays;
017        
018        private MessagePriority(float maxRangeLightYears, float broadcastDurationDays) {
019                this.maxRangeLightYears = maxRangeLightYears;
020                this.broadcastDurationDays = broadcastDurationDays;
021        }
022        
023        public float getMaxRangeLightYears() {
024                return maxRangeLightYears;
025        }
026        public float getBroadcastDurationDays() {
027                return broadcastDurationDays;
028        }
029        
030}