Okay fine I'll stop quoting Heaven Sent
This commit is contained in:
parent
48d214a0ee
commit
d23f20c0f8
18 changed files with 64 additions and 39 deletions
|
@ -1,11 +1,24 @@
|
|||
package su.a71.tardim_ic.tardim_ic;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.GsonBuilder;
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
public class Constants {
|
||||
|
||||
public static final String MOD_ID = "tardim_ic";
|
||||
public static final String MOD_NAME = "TARDIM: In Control";
|
||||
public static final Logger LOG = LoggerFactory.getLogger(MOD_NAME);
|
||||
public static final String MOD_ID;
|
||||
public static final String MOD_NAME;
|
||||
public static final Logger LOG;
|
||||
public static final Gson GSON;
|
||||
|
||||
static {
|
||||
MOD_ID = "tardim_ic";
|
||||
MOD_NAME = "TARDIM: In Control";
|
||||
LOG = LoggerFactory.getLogger(MOD_NAME);
|
||||
GSON = (new GsonBuilder()).setPrettyPrinting().create();
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 437 B |
Binary file not shown.
After Width: | Height: | Size: 437 B |
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "tardim_ic:item/location_jammer"
|
||||
"layer0": "tardim_ic:item/personal_jammer"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
--[[
|
||||
This is source code of my personal TARDIM Navigation Dashboard (NavDash)
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue