Merge remote-tracking branch 'upstream/master'

This commit is contained in:
sdburns1998
2019-07-08 18:18:08 +02:00
5 changed files with 32 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
package net.runelite.api.events;
import lombok.Value;
/**
* An event where a request to add a friend is sent to the server.
*/
@Value
public class FriendAdded
{
/**
* The name of the added friend.
*/
private final String name;
}

View File

@@ -30,7 +30,7 @@ import lombok.Value;
* An event where a request to remove a friend is sent to the server.
*/
@Value
public class RemovedFriend
public class FriendRemoved
{
/**
* The name of the removed friend.