23 lines
341 B
C++
23 lines
341 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: HelloNet.Win32.cpp
|
||
|
Date: 2022-2-1
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#include <Source/RuntimeInternal.hpp>
|
||
|
#include "HelloNet.Win32.hpp"
|
||
|
|
||
|
namespace Aurora::IO::Net
|
||
|
{
|
||
|
void InitNetworking()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void DeinitNetworking()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|