mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-30 15:33:36 +00:00
12 lines
275 B
C
12 lines
275 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/WindowsGame.h"
|
|
#else
|
|
#include "app/linux/LinuxGame.h"
|
|
#endif
|