20 lines
579 B
C++
20 lines
579 B
C++
/* -----------------------------------------------------------------------------
|
|
GSFramework
|
|
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
#include "scene3d/mcamera.h"
|
|
#include "scene3d/scene_message.h"
|
|
|
|
using namespace GS::S3D;
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
MCamera::MCamera()
|
|
{
|
|
item_type = Type_Camera;
|
|
mitem = (void *)((MItem *)this);
|
|
}
|
|
//------------------------------------------------------------------------------
|