mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
9 lines
No EOL
180 B
C#
9 lines
No EOL
180 B
C#
namespace Hacknet
|
|
{
|
|
internal interface MailResponder
|
|
{
|
|
void mailSent(string mail, string userTo);
|
|
|
|
void mailReceived(string mail, string userTo);
|
|
}
|
|
} |