-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalloutCreator.java
More file actions
25 lines (23 loc) · 972 Bytes
/
CalloutCreator.java
File metadata and controls
25 lines (23 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.baseballaholic.CalloutsMod;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.baseballaholic.CalloutsMod.callouts.*;
public class CalloutCreator {
public static Map<String, List <Callouts>> getAllCallouts() {
Map<String, List <Callouts>> map = new HashMap<String, List<Callouts>>();
map.put("Sandstorm", Sandstorm.createSandstormCallouts());
map.put("Reserve", Reserve.createCallouts());
map.put("Junction", Junction.createCallouts());
map.put("Ruins", Ruins.createCallouts());
map.put("Atomic V2", Atomicv2.createCallouts());
map.put("Alleyway", Alleyway.createCallouts());
map.put("Bazaar", Bazaar.createCallouts());
map.put("Castle", Castle.createCallouts());
map.put("Temple", Temple.createCallouts());
map.put("Derailed", Derailed.createCallouts());
map.put("Overgrown", Overgrown.createCallouts());
map.put("Carrier", Carrier.createCallouts());
return map;
}
}