This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/freestyle/intern/app_blender/api.cpp

22 lines
379 B
C++
Raw Normal View History

#include "Controller.h"
#include <iostream>
using namespace std;
#ifdef __cplusplus
extern "C" {
#endif
void FRS_execute() {
cout << "Freestyle" << endl;
Controller *c = new Controller;
//c->Load3DSFile( "/Users/mx/Documents/work/GSoC_2008/bf-blender/branches/soc-2008-mxcurioni/source/blender/freestyle/data/models/teapot.3DS" );
}
#ifdef __cplusplus
}
#endif