Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/util/physics/physical_interaction_sym.cc @ 3961

Last change on this file since 3961 was 3961, checked in by patrick, 19 years ago

orxonox/branches/physics: just implemented the class hirarchy of the physics engine

File size: 823 bytes
Line 
1
2
3/*
4   orxonox - the future of 3D-vertical-scrollers
5
6   Copyright (C) 2004 orx
7
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2, or (at your option)
11   any later version.
12
13   ### File Specific:
14   main-programmer: Patrick Boenzli
15   co-programmer: ...
16*/
17
18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PHYSICS
19
20#include "physical_interaction_sym.h"
21
22#include "stdincl.h"
23
24using namespace std;
25
26
27/**
28   \brief standard constructor
29*/
30PhysicalInteractionSym::PhysicalInteractionSym () 
31{
32   this->setClassName ("PhysicalInteractionSym");
33}
34
35
36/**
37   \brief standard deconstructor
38
39*/
40PhysicalInteractionSym::~PhysicalInteractionSym () 
41{
42  // delete what has to be deleted here
43}
Note: See TracBrowser for help on using the repository browser.