C# Class GameBreak, goalBall

Base class for different types of breaks
ファイルを表示 Open project: DrexelGoalBall/goalBall Class Usage Examples

Protected Properties

Property Type Description
ball GameObject
breakLength int
referee Referee,

Public Methods

Method Description
EndOfBreakActions ( ) : void

Actions to perform when the break ends

GameBreak ( ) : UnityEngine

Default constructor to initialize objects/scripts

GetBreakLength ( ) : int

Allows outside classes to access the length for this break

StartOfBreakActions ( ) : void

Actions to perform when the break begins

Method Details

EndOfBreakActions() public abstract method

Actions to perform when the break ends
public abstract EndOfBreakActions ( ) : void
return void

GameBreak() public method

Default constructor to initialize objects/scripts
public GameBreak ( ) : UnityEngine
return UnityEngine

GetBreakLength() public method

Allows outside classes to access the length for this break
public GetBreakLength ( ) : int
return int

StartOfBreakActions() public abstract method

Actions to perform when the break begins
public abstract StartOfBreakActions ( ) : void
return void

Property Details

ball protected_oe property

protected GameObject ball
return GameObject

breakLength protected_oe property

protected int breakLength
return int

referee protected_oe property

protected Referee, referee
return Referee,