11 lines
166 B
C++
11 lines
166 B
C++
|
|
#pragma once
|
||
|
|
#include "stdafx.hpp"
|
||
|
|
|
||
|
|
namespace VSW::Materializer::StandaloneMain {
|
||
|
|
|
||
|
|
#ifdef MATERIALIZER_STANDALONE
|
||
|
|
void PlayerMain(int argc, char* argv[]);
|
||
|
|
#endif
|
||
|
|
|
||
|
|
}
|