[go: up one dir, main page]

Menu

[r59]: / engine / structur.cpp  Maximize  Restore  History

Download this file

13 lines (11 with data), 309 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#include <stdio.h>
#include "core.hpp"
int main(int argc, char *argv[])
{
//printf("stats = %d\n",sizeof(STATS));
//printf("xstats = %d\n",sizeof(XSTATS));
printf("world = %d\n",sizeof(WORLD));
//printf("xworld = %d\n",sizeof(XWORLD));
printf("int = %d\n",sizeof(int));
printf("long = %d\n",sizeof(long));
}