0
Error 12 The type or namespace name 'Logic' does not exist in the namespace 'Game.Logic.AI.Game' (are you Missing an Assembly Reference?)
How can I solve it? I already have a project called Game.Logic
and my code is like this:
namespace Game.Logic.AI.Game
{
using Game.Logic.AI;
public class GControl0 : APVEGameControl
{
public static readonly GControl0 Simple = new GControl0();
}
}
using Game.Logic.AI; comes before namespace .
– Marco Souza
I thought the same thing @Marconciliosouza, but this is not necessary. The way the question is right.
– Jéf Bueno
Vinicius, you referenced the project
Game.Logic
in this project?– Jéf Bueno
@jbueno, it can use a reference from one to Assembly and continue using the same namespace? ....
namespace Game.Logic.AI
...using Game.Logic.AI;
– Marco Souza
@This I don’t know anymore. I’m talking about declaring the
using
after thenamespace
.– Jéf Bueno