summaryrefslogblamecommitdiffstats
path: root/src/input_common/udp/udp.h
blob: 4f83f0441f51ec6641e6ae464ac8dd7d3db5ebfe (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                            

            
                 


                                    
             













                                       
// Copyright 2018 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>

namespace InputCommon::CemuhookUDP {

class Client;

class State {
public:
    State();
    ~State();
    void ReloadUDPClient();

private:
    std::unique_ptr<Client> client;
};

std::unique_ptr<State> Init();

} // namespace InputCommon::CemuhookUDP