This content originally appeared on DEV Community and was authored by Zako Mako
This is how to import C++ code into your Faceone library. Watch this video to learn more about C++. https://www.YouTube.com/Caleb-curry Update: mentioned a wrong youtuber don’t click the link
To import from C++ then make a new project in C++.
#include <iostream>
int main() {
std::cout << "some code";
return 0;
}
Then make Faceone code
// include function.im;
// import
Then upload the file to your Faceone library in a file type called .zewpol
// include function.im;
//import file.c?? ()Zew.FCE;
Go back to your first code in Faceone and edit it
// include function.im;
// import file.c??
;
There you have it! A linked Faceone file
See you next time!
This content originally appeared on DEV Community and was authored by Zako Mako