File: main.cxx

package info (click to toggle)
f3d 3.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,668 kB
  • sloc: cpp: 99,109; python: 811; sh: 342; xml: 238; java: 101; javascript: 95; makefile: 25
file content (22 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <f3d/camera.h>
#include <f3d/engine.h>
#include <f3d/exception.h>
#include <f3d/export.h>
#include <f3d/image.h>
#include <f3d/interactor.h>
#include <f3d/log.h>
#include <f3d/options.h>
#include <f3d/scene.h>
#include <f3d/types.h>
#include <f3d/window.h>

int main()
{
  f3d::engine::autoloadPlugins();

  f3d::engine eng = f3d::engine::createNone();

  f3d::log::info("F3D engine is loaded");

  return 0;
}