mirror of
https://github.com/clockworkpi/DevTerm.git
synced 2025-12-13 02:38:50 +01:00
25 lines
362 B
C
25 lines
362 B
C
/*
|
|
* ALGO : PROJ. : Volume
|
|
* RESEARCH : File : main.c
|
|
* : Date : 20100531.0725UTC
|
|
* : Email : mail@algoresearch.net
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "main.h"
|
|
#include "space.h"
|
|
#include "observer.h"
|
|
|
|
int main()
|
|
{
|
|
SYS_TABLE sys;
|
|
|
|
create_space (&sys, 320, 320, 320);
|
|
create_observer (&sys);
|
|
iterative_space (&sys);
|
|
|
|
return 0;
|
|
}
|
|
|