areaimpulse.cc
Go to the documentation of this file.00001 //------------------------------------------------------------------------------ 00002 // physics/areaimpulse.cc 00003 // (C) 2005 Radon Labs GmbH 00004 //------------------------------------------------------------------------------ 00005 #include "physics/areaimpulse.h" 00006 00007 namespace Physics 00008 { 00009 ImplementRtti(Physics::AreaImpulse, Foundation::RefCounted); 00010 ImplementFactory(Physics::AreaImpulse); 00011 00012 //------------------------------------------------------------------------------ 00015 AreaImpulse::AreaImpulse() 00016 { 00017 // empty 00018 } 00019 00020 //------------------------------------------------------------------------------ 00023 AreaImpulse::~AreaImpulse() 00024 { 00025 // empty 00026 } 00027 00028 //------------------------------------------------------------------------------ 00031 void 00032 AreaImpulse::Apply() 00033 { 00034 // empty 00035 } 00036 00037 }; 00038