소스 검색

Garrison: Documentation for our() and ally()

Sandy Carter 10 년 전
부모
커밋
6ffb03cba3
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      client/widgets/CGarrisonInt.cpp

+ 2 - 0
client/widgets/CGarrisonInt.cpp

@@ -122,11 +122,13 @@ const CArmedInstance * CGarrisonSlot::getObj() const
 	return 	(!upg)?(owner->armedObjs[0]):(owner->armedObjs[1]);
 }
 
+/// @return Whether the unit in the slot belongs to the current player.
 bool CGarrisonSlot::our() const
 {
 	return 	upg?(owner->owned[1]):(owner->owned[0]);
 }
 
+/// @return Whether the unit in the slot belongs to an ally but not to the current player.
 bool CGarrisonSlot::ally() const
 {
 	if(!getObj())