3DCoat Core API
The 3DCoat API documentation.
Loading...
Searching...
No Matches
minimal.cpp

The minimal c++ program

// The minimal c++ program
#include <CoreAPI.h>
//You may use Visual studio to debug your sources. Debug->Attach to process, choose 3DCoatGL64,
//then open this file in VS and set breakpoints.
//Please use the c++17 standart.
//If you need the release build at full speed please change the Debug below to Release
//@config: Debug
// The main() will be called as soon as user will run the script
EXPORT
int main(){
//put your code there
return 0;
}