17 lines
359 B
VB.net
17 lines
359 B
VB.net
Namespace Items.Mail
|
|
|
|
<Item(308, "Retro Mail")>
|
|
Public Class RetroMail
|
|
|
|
Inherits MailItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "Mail featuring the drawings of three Pokémon."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(168, 456, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|