Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/network/synchronisable.cc @ 4471

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

orxonox/trunk: synchronisable class commented, light altered

File size: 938 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_NETWORK
19
20#include "synchronisable.h"
21
22
23using namespace std;
24
25
26/**
27   \brief constructor for this class
28 */
29Synchronisable::Synchronisable () {}
30
31
32/**
33   \brief deconstructor for this class
34*/
35Synchronisable::~Synchronisable () {}
36
37
38/**
39   \brief gets the state of this object
40   \returns the state
41*/
42worldEntityState* Synchronisable::getState()
43{}
44
45
46/**
47   \brief sets the state of this object
48   \param state: the current state
49*/
50void Synchronisable::setState(worldEntityState* state)
51{}
Note: See TracBrowser for help on using the repository browser.