Fix build error due to missing file from commit 98c304e865.

Proper contents still needs to be added, this just makes things build.
This commit is contained in:
Brecht Van Lommel 2018-08-10 14:30:27 +02:00
parent 69d710187d
commit 693ecdf7d3
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,42 @@
/*
* ***** BEGIN GPL LICENSE BLOCK *****
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* The Original Code is Copyright (C) 2014 Blender Foundation.
* All rights reserved.
*
* Contributor(s): Blender Foundation
*
* ***** END GPL LICENSE BLOCK *****
*/
#include "BLI_math.h"
#include "BKE_context.h"
#include "ED_view3d.h"
#include "ED_gizmo_library.h"
#include "WM_types.h"
#include "WM_api.h"
/* own includes */
#include "../gizmo_geometry.h"
#include "../gizmo_library_intern.h"
void ED_gizmotypes_blank_3d(void)
{
}

View File

@ -42,6 +42,9 @@ void ED_gizmotypes_facemap_3d(void);
void ED_gizmotypes_primitive_3d(void);
void ED_gizmotypes_blank_3d(void);
struct bContext;
struct Object;
struct Scene;
struct wmGizmo;
struct wmGizmoGroup;