10 lines
206 B
C
10 lines
206 B
C
|
#include <maintree/maintree.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
MtState state = mt_initialize("Interface Test");;
|
||
|
MtEntity entity = mt_summon(state);
|
||
|
mt_drop(entity);
|
||
|
mt_cleanup(state);
|
||
|
}
|