Re: [GD-General] not sure where to post this question... bit C++ implementation specific....
Brought to you by:
vexxed72
|
From: Jorrit T. <jor...@uz...> - 2004-07-07 09:35:59
|
CAVEY GERARD wrote:
>
>but why dont you just use some temp integers filled with the abs values
>to create your array?
>It will only add few instructions.
>Instead of trying to destroy the wall ,just jump over :)
>
>
How would that help? In C++ you simply cannot do this:
int a = 6;
int array[a];
It is not possible to allocate arrays with variables (const or not const).
Greetings,
|