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.
MainTree/core/tests/interface/entity-creation/main.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);
}