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

14 lines
391 B
C
Raw Normal View History

#include <maintree/maintree.h>
#include <stdio.h>
int main()
{
MtState *state = mt_initialize("Interface Test");;
MtEntity* entity = mt_summon(state);
mt_drop(entity);
mt_cleanup(state);
puts("The program reached the end; this test is considered as passed. SUCCESS!");
puts("Note: A memory leak check utility should be used to verify the success.");
return 0;
}