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



                                            

            
                 

                                 


                                    
             

                       





                           
                                                        


                                   

                                                     




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

#pragma once

#include <memory>
#include <vector>
#include "common/param_package.h"

namespace InputCommon::CemuhookUDP {

class Client;
class UDPMotionFactory;
class UDPTouchFactory;

class State {
public:
    State();
    ~State();
    void ReloadUDPClient();
    std::vector<Common::ParamPackage> GetInputDevices();

private:
    std::unique_ptr<Client> client;
    std::shared_ptr<UDPMotionFactory> motion_factory;
    std::shared_ptr<UDPTouchFactory> touch_factory;
};

std::unique_ptr<State> Init();

} // namespace InputCommon::CemuhookUDP