This repository has been archived on 2024-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
|
#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);
|
|
}
|