marrub
/
Lithia
Archived
1
0
Fork 0
This repository has been archived on 2023-06-17. You can view files and clone it, but cannot push or open issues/pull-requests.
Lithia/source/Headers/lith_version.h

16 lines
426 B
C

// Copyright © 2016-2018 Graham Sanderson, all rights reserved.
#define Lith_Version "1.0"
#define Lith_APIVersion 170
#define Lith_CheckAPIVersion() \
do \
if(world.apiversion != Lith_APIVersion) { \
printf(c"%s: Invalid API version! Expected %i, but got %i\n", \
__func__, Lith_APIVersion, world.apiversion); \
abort(); \
} \
while(0)
#include <stdio.h>
// 170 - 1.0
// EOF