Hi guys,
I want to have two classes in a single .as file, one of the classes will only be visible to the main class in the file.
class QueItem{
…
}
class Que{
//only this class will use QueItem, no other classes will
}
Can I do that ? I tried a few syntaxes but it never works.
Thanks.