2014-09-18 21:54:29 +03:00

16 lines
274 B
C++

#pragma once
#include "interface/event.h"
#include "network/include/api.h"
namespace client_lua
{
struct FilesSent: public interface::Event::Private
{
network::PeerInfo::Id recipient;
FilesSent(const network::PeerInfo::Id &recipient): recipient(recipient){}
};
}