// TwinVert.h

#ifndef _TWINVERT_H_
#define _TWINVERT_H_


#include "Types.h"
#include "Math.h"


class CTwinVert
{
	private:

		Vector3
			Vert[2];


	public:

		void Set( const s32 frame, const Vector3 *v );
		Vector3 *Get( const s32 frame );
};


#endif
