RuneI
Class Raft

source: c:\runehov\RuneI\Classes\Raft.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Decoration
         |
         +--RuneI.DecorationRune
            |
            +--RuneI.Floater
               |
               +--RuneI.Raft
Direct Known Subclasses:None

class Raft
extends RuneI.Floater

//============================================================================= // Raft. //=============================================================================

Function Summary
 EMatterType MatterForJoint(int joint)
     
//============================================================
//
// MatterForJoint
//
// Returns what kind of material joint is associated with
//============================================================



Source Code


00001	//=============================================================================
00002	// Raft.
00003	//=============================================================================
00004	class Raft expands Floater;
00005	
00006	
00007	//============================================================
00008	//
00009	// MatterForJoint
00010	//
00011	// Returns what kind of material joint is associated with
00012	//============================================================
00013	function EMatterType MatterForJoint(int joint)
00014	{
00015		return MATTER_WOOD;
00016	}
00017	
00018	defaultproperties
00019	{
00020	     CollisionRadius=100.000000
00021	     CollisionHeight=10.000000
00022	     Skeletal=SkelModel'objects.Raft'
00023	}

End Source Code