Added ManaCost & ExtraCost to the startup traces of certain class sizes.

This commit is contained in:
wrenczes@gmail.com
2011-04-21 03:22:09 +00:00
parent 7bf6374fc7
commit 920282017b

View File

@@ -10,6 +10,7 @@
#endif
#include "WResourceManager.h"
#include "ExtraCost.h"
#include "GameApp.h"
#include "Subtypes.h"
#include "GameStateTransitions.h"
@@ -252,6 +253,8 @@ void GameApp::Create()
DebugTrace("size of MTGCard: "<< sizeof(MTGCard));
DebugTrace("size of CardPrimitive: "<< sizeof(CardPrimitive));
DebugTrace("size of ExtraCost: " << sizeof(ExtraCost));
DebugTrace("Size of ManaCost: " << sizeof(ManaCost));
LOG("Game Creation Done.");
}