mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-22 09:19:49 +08:00
Renamed all references to a certain game
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
package emu.grasscutter.server.packet.send;
|
||||
|
||||
import emu.grasscutter.game.avatar.GenshinAvatar;
|
||||
import emu.grasscutter.net.packet.GenshinPacket;
|
||||
import emu.grasscutter.game.avatar.Avatar;
|
||||
import emu.grasscutter.net.packet.BasePacket;
|
||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.UnlockAvatarTalentRspOuterClass.UnlockAvatarTalentRsp;
|
||||
|
||||
public class PacketUnlockAvatarTalentRsp extends GenshinPacket {
|
||||
public class PacketUnlockAvatarTalentRsp extends BasePacket {
|
||||
|
||||
public PacketUnlockAvatarTalentRsp(GenshinAvatar avatar, int talentId) {
|
||||
public PacketUnlockAvatarTalentRsp(Avatar avatar, int talentId) {
|
||||
super(PacketOpcodes.UnlockAvatarTalentRsp);
|
||||
|
||||
UnlockAvatarTalentRsp proto = UnlockAvatarTalentRsp.newBuilder()
|
||||
|
||||
Reference in New Issue
Block a user