14 lines
217 B
C++
14 lines
217 B
C++
#pragma once
|
|
|
|
#include <blitz/network/EnetConnection.h>
|
|
|
|
namespace blitz {
|
|
namespace server {
|
|
|
|
struct EnetConnectionComponent {
|
|
network::EnetConnection* m_Connection;
|
|
};
|
|
|
|
} // namespace server
|
|
} // namespace blitz
|