C# 클래스 AbstractFactory.EnemyShip

파일 보기 프로젝트 열기: marwie/Design-Patterns-in-Unity-Example 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
name string

보호된 프로퍼티들

프로퍼티 타입 설명
engine IESEngine
weapon IESWeapon

공개 메소드들

메소드 설명
DisplayShip ( ) : void
FollowHeroShip ( ) : void
MakeShip ( ) : void
Shoot ( ) : void
ToString ( ) : string

메소드 상세

DisplayShip() 공개 메소드

public DisplayShip ( ) : void
리턴 void

FollowHeroShip() 공개 메소드

public FollowHeroShip ( ) : void
리턴 void

MakeShip() 공개 추상적인 메소드

public abstract MakeShip ( ) : void
리턴 void

Shoot() 공개 메소드

public Shoot ( ) : void
리턴 void

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

프로퍼티 상세

engine 보호되어 있는 프로퍼티

protected IESEngine engine
리턴 IESEngine

name 공개적으로 프로퍼티

public string name
리턴 string

weapon 보호되어 있는 프로퍼티

protected IESWeapon weapon
리턴 IESWeapon