DEV Community

Zako Mako
Zako Mako

Posted on

C++ import for Faceone tutorial

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;
}

Enter fullscreen mode Exit fullscreen mode

Then make Faceone code

// include function.im;

// import 
Enter fullscreen mode Exit fullscreen mode

Then upload the file to your Faceone library in a file type called .zewpol

// include function.im;

//import file.c?? ()Zew.FCE;
Enter fullscreen mode Exit fullscreen mode

Go back to your first code in Faceone and edit it


// include function.im;

// import file.c?? 
;
Enter fullscreen mode Exit fullscreen mode

There you have it! A linked Faceone file

See you next time!

Top comments (0)