mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-21 09:52:54 +00:00
12 lines
277 B
C
12 lines
277 B
C
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
#pragma once
|
|
|
|
#ifdef _WINDOWS64
|
|
#include "app/windows/Windows64_App.h"
|
|
#else
|
|
#include "app/linux/Linux_App.h"
|
|
#endif
|