aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/GT_Server.java
blob: cdcd954deab1c548885ff705fbb7a3d1aaddcaa8 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
package gregtech.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;

public class GT_Server
  extends GT_Proxy
{
  public boolean isServerSide()
  {
    return true;
  }
  
  public boolean isClientSide()
  {
    return false;
  }
  
  public boolean isBukkitSide()
  {
    return false;
  }
  
  public void doSonictronSound(ItemStack aStack, World aWorld, double aX, double aY, double aZ) {}
  
  public int addArmor(String aPrefix)
  {
    return 0;
  }
  
  public EntityPlayer getThePlayer()
  {
    return null;
  }
}