1package net.minecraft.server; 2 3class RedstoneUpdateInfo { 4 5 int a; 6 int b; 7 int c; 8 long d; 9 10 public RedstoneUpdateInfo(int i, int j, int k, long l) { 11 this.a = i; 12 this.b = j; 13 this.c = k; 14 this.d = l; 15 } 16}