1
0

clean up code for patching

This commit is contained in:
Tycho Bickerstaff 2013-12-31 15:58:21 +00:00
parent 18fb814c34
commit 512d1b9ebe
3 changed files with 5 additions and 3 deletions

View File

@ -14,6 +14,7 @@
/** This is really only a placeholder to be used in places where we need to "make up" a chunk's Y coord. /** This is really only a placeholder to be used in places where we need to "make up" a chunk's Y coord.
It will help us when the new chunk format comes out and we need to patch everything up for compatibility. It will help us when the new chunk format comes out and we need to patch everything up for compatibility.
*/ */

View File

@ -20,10 +20,10 @@ class cEvent
{ {
public: public:
cEvent(void); cEvent(void);
virtual ~cEvent(); ~cEvent();
virtual void Wait(void); void Wait(void);
virtual void Set (void); void Set (void);
private: private:

View File

@ -22,6 +22,7 @@ In the descending class' constructor call the Start() method to start the thread
class cIsThread class cIsThread
{ {
protected: protected: