18 lines
561 B
C++
18 lines
561 B
C++
/* -----------------------------------------------------------------------------
|
|
GSFramework
|
|
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
#include "motion/motion_channel.h"
|
|
|
|
using namespace GS::Core;
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
MotionChannel::MotionChannel()
|
|
{ type = NoType; }
|
|
MotionChannel::~MotionChannel()
|
|
{ Clear(); }
|
|
//------------------------------------------------------------------------------
|