another engin problem
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?
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.
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
March 22, 2001 06:04 PM
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)};
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.
TILE TileArray[2][2] = {
{AA1, AA1},
{AA1, AA1)}; <-- No parenthesis, should be }
Patrick Lafleur
System Engineer
Creation Objet Inc.
-nosfy Lead programmerCreation Objet Inc.Zone Sudoku: une grille gratuite à chaque jour
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement