X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flsystem.cpp;fp=src%2Flsystem.cpp;h=27e51d37978f5a4e72b35d1a8e6a9c3207b4207a;hb=dd73b028a74ef8b57569c3e76751481d2124e491;hp=0000000000000000000000000000000000000000;hpb=4f63b3f3fc8251568c9dc51042ca3c561e8c4020;p=lsystem3d.git diff --git a/src/lsystem.cpp b/src/lsystem.cpp new file mode 100644 index 0000000..27e51d3 --- /dev/null +++ b/src/lsystem.cpp @@ -0,0 +1,45 @@ +// Copyright (C) 2006 Erik Dahlberg +// +// This file is part of LSystem3d. +// +// LSystem3D is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// LSystem3D is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with LSystem3D; if not, write to the Free Software +// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + + + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include + +#include + +#include "openglwindow.h" + + +OpenGLWindow *openglWindow = NULL; + + + +int main(int argc, char *argv[]) +{ + glutInit(&argc, argv); + + OpenGLWindow window; + + + return EXIT_SUCCESS; +}