Advertisement
Guest User

Untitled

a guest
Jan 6th, 2025
26
0
22 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package com.gamergaming.taczweaponblueprints.mixin;
  2.  
  3. import org.spongepowered.asm.mixin.Mixin;
  4. import org.spongepowered.asm.mixin.gen.Accessor;
  5.  
  6. import com.tacz.guns.crafting.GunSmithTableRecipe;
  7. import com.tacz.guns.crafting.GunSmithTableResult;
  8.  
  9. @Mixin(GunSmithTableRecipe.class)
  10. public interface IGunSmithTableRecipeAccessor {
  11.  
  12. @Accessor(value = "result", remap = false)
  13. void setResult(GunSmithTableResult result);
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement