# Server.cpp

## Namespaces

| Name                                                                                                                        |
| --------------------------------------------------------------------------------------------------------------------------- |
| [**network**](https://github.com/TEAM-AAAAAAAAAAAAAAAA/RTYPE-TECHNICAL-DOCS/blob/main/Files/Namespaces/namespacenetwork.md) |

## Source code

```cpp
/*
** EPITECH PROJECT, 2022
** RTYPE
** File description:
** Server
*/

#include "Server.hpp"

namespace network
{
    Server &Server::getInstance()
    {
        static Server _Instance;
        return _Instance;
    }
} // namespace network
```

***

Updated on 2022-11-13 at 17:21:37 +0100
