everything referenced allright?

vincentnl

Freshman
Joined
Mar 29, 2003
Messages
40
Location
Netherlands
I am using C#, DirectX 9.0, and I am trying to make a 2D puzzle game(sokoban). (newbie question)

I want to display a bitmap, so I want to use TextureLoader, but It does not appear in my intellisense ?

I have in my references a.o.
using System;
using Microsoft.DirectX;
using Microsoft.DirectX.Direct3D;

When will it show up? Do I have to create the Textureloader, of is it an abstract class?

tx
 
Did you reference the Microsoft.DirectX.Direct3DX assembly?
That is where the class is located, and then after you reference that assembly it will be added to Microsoft.DirectX.Direct3D namespace.
 
Back
Top