001package com.fs.starfarer.api;
002
003public class SpriteId {
004
005        private String category;
006        private String key;
007        
008        public SpriteId(String category, String key) {
009                this.category = category;
010                this.key = key;
011        }
012        public String getCategory() {
013                return category;
014        }
015        public String getKey() {
016                return key;
017        }
018        public void setCategory(String category) {
019                this.category = category;
020        }
021        public void setKey(String key) {
022                this.key = key;
023        }
024        
025        
026}