another engin problem

Started by
4 comments, last by GaMe wIg 23 years, 1 month ago
ok, lets say I have a structure called TILE. TILE stores the x-pos on a tile palet, the y-pos on a tile palet, and the tiles clipping (normal, solid, water, etc.). how do i store a bunch of TILEs into an array?
Advertisement
For a dynamic array...
TILE* tileArray = new TILE[100];
or static ...
TILE tileArray[100];

Martee
Magnum Games.NET
All your code are belong to us.
ReactOS - an Open-source operating system compatible with Windows NT apps and drivers
Yes, but why won''t this work:

TILE AA1;
AA1.nX = 0;
AA1.nY = 0;
AA1.nClip = 1;

TILE TileArray[2][2] = {
{AA1, AA1},
{AA1, AA1)};
Maybe because you have an error syntax.

TILE TileArray[2][2] = {
{AA1, AA1},
{AA1, AA1)}; <-- No parenthesis, should be }



Patrick Lafleur

System Engineer
Creation Objet Inc.
Well, pardon my French. It still doesn''t with a "}" inplace of the ")".
Only one }

This topic is closed to new replies.

Advertisement