VersionCommon

03/17/2022 05:15 IFlyffMc#1
How to make a one VersionCommon.h in Source/Common Folder. i've try'd to add ServerCommon on that folder and edit those Stdafx.h VersionCommon.h into ServerCommon.h and try'd to compile it and got a lot of definition/other errors? can anyone help me please btw im using this clean release: [Only registered and activated users can see links. Click Here To Register...]
03/17/2022 16:02 Nιgнтмαяε#2
Make all stdafx.h look like this:
Code:
#include "VersionCommon.h"
#include "Custom.h"
Then add your Custom.h to your project and save.
03/20/2022 06:26 IFlyffMc#3
Quote:
Originally Posted by Nιgнтмαяε View Post
Make all stdafx.h look like this:
Code:
#include "VersionCommon.h"
#include "Custom.h"
Then add your Custom.h to your project and save.
Ohh i see thank you very much! :handsdown: