Help

Posts 13 of 3 · Page 1 of 1
Help
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
}
class Local
{
public:
	char unknown0[20]; //0x0000
	LocalCoord* first; //0x0014  
		
};

class LocalCoord
{
public:
	char unknown0[16]; //0x0000
	D3DXVECTOR3 pos;
	char unknown28[24]; //0x001C
	Ent* pEnt; //0x0034  
	char unknown56[140]; //0x0038
	LocalCoord* pNext; //0x00C4  
        LocalCoord* pNext; //0x00C8//this one is better i think atm
};



class Ent
{
public:
	Type* pType; //0x0000  
		
};

class Type
{
public:
	char unknown0[8]; //0x0000
	char ObjType[16]; //0x0008  
		
};
Help please understand that your code is wrong? I can not collect the code to make it work in your application
1. Your language (English?) is difficult to understand.
2. Your braces are the wrong way round. You've got:
Code:
namespace
}
with an close brace instead of an opening brace, and no closing brace at the end.
3. You can't combine C# with C++. It just doesn't work.
4. D3DXVECTOR3 isn't defined
5. You can't use pointers without declaring it as unsafe in C#.
What a brainfuck code you just created.

This is C##
Posts 13 of 3 · Page 1 of 1

Post a Reply

Tags for this Thread

None

Need help?