I have a public var called monster number in my monster class.
public var monsterNumber:int;
And in my document class, I want to give monsterNumber a number, lets say 5.
It's still tracing monsterNumber as 0 in my monster class, but 5 in my document class. Is there any way to change this var in my document class?