summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/nodes/wbspline.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/worldbuilder/code/nodes/wbspline.h')
-rw-r--r--tools/worldbuilder/code/nodes/wbspline.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/tools/worldbuilder/code/nodes/wbspline.h b/tools/worldbuilder/code/nodes/wbspline.h
new file mode 100644
index 0000000..87caf6d
--- /dev/null
+++ b/tools/worldbuilder/code/nodes/wbspline.h
@@ -0,0 +1,54 @@
+//=============================================================================
+// Copyright (C) 2002 Radical Entertainment Ltd. All rights reserved.
+//
+// File: wbspline.h
+//
+// Description: Blahblahblah
+//
+// History: 05/06/2002 + Created -- NAME
+//
+//=============================================================================
+
+#ifndef WBSPLINE_H
+#define WBSPLINE_H
+
+//========================================
+// Nested Includes
+//========================================
+#include "main/toolhack.h"
+
+#include "precompiled/PCH.h"
+
+//========================================
+// Forward References
+//========================================
+class tlDataChunk;
+
+//=============================================================================
+//
+// Synopsis: Blahblahblah
+//
+//=============================================================================
+
+class WBSpline
+{
+public:
+ static tlDataChunk* Export( MObject& obj );
+
+ enum { MAX_NAME_LEN = 256 };
+
+ static void SetName( const char* name );
+ static const char* const GetName();
+ static char sName[MAX_NAME_LEN];
+
+private:
+ WBSpline();
+ virtual ~WBSpline();
+
+ //Prevent wasteful constructor creation.
+ WBSpline( const WBSpline& wbspline );
+ WBSpline& operator=( const WBSpline& wbspline );
+};
+
+
+#endif //WBSPLINE_H