초기화 및 정리

이 메소드는 프레임워크 관련 초기화 및 정리를 구현합니다.

예를 들면, 다음과 같습니다.

void class::initRelations() {
   state1 = new state1Class(); // creating the states
};
void class::cleanUpRelations() {
};

피드백