Starsector API
Loading...
Searching...
No Matches
SpriteId.java
Go to the documentation of this file.
1package com.fs.starfarer.api;
2
3public class SpriteId {
4
5 private String category;
6 private String key;
7
8 public SpriteId(String category, String key) {
9 this.category = category;
10 this.key = key;
11 }
12 public String getCategory() {
13 return category;
14 }
15 public String getKey() {
16 return key;
17 }
18 public void setCategory(String category) {
19 this.category = category;
20 }
21 public void setKey(String key) {
22 this.key = key;
23 }
24
25
26}
SpriteId(String category, String key)
Definition SpriteId.java:8
void setCategory(String category)
Definition SpriteId.java:18