[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Forward Declaration
- From: jcugniere@...
- Date: Tue, 14 Oct 2003 15:03:16 +0200
You could do it that way:
Menu = {};
SubMenu1 =
{
["New Campaign"] = ID_CAMPAIGN,
["New Random Map"] = ID_RANDOMMAP,
["Back"] = Menu
};
Menu["New"] = SubMenu1;
Menu["Load Game"] = ID_LOADGAME;
Menu["Exit"] = ID_EXIT;
Selon "Speight.Marcus" <marcus.speight@vivid-gaming.com>:
> Hi,
>
> I'm fairly new to LUA and hoped someone could answer a problem for me.
>
> I have a menu system that loads an lua script. But I need a menu to back
> reference.
>
> e.g.
>
> SubMenu1 =
> {
> ["New Campaign"] = ID_CAMPAIGN,
> ["New Random Map"] = ID_RANDOMMAP,
> ["Back"] = Menu <-- Problem
> };
>
> Menu =
> {
> ["New"] = SubMenu1,
> ["Load Game"] = ID_LOADGAME,
> ["Exit"] = ID_EXIT
> };
>
> I tried adding Menu = {}; at the beginning of the file but it did not help.
> How to I do this?
>
>
> Marcus Speight
> Software Engineer
> Vivid Gaming
>
> The views expressed in this message are those of the sender and not
> necessarily those of IGT - UK Limited and its associated companies.
>
>
>
>
--
Julien Cugnière