using System;
using ChessingCore;
namespace ChessingGame
{
public class Board
{
Int2D _size;
History _history;
// ...rest of code
}
}
This script fails because it claims the namespace "ChessingCore" is not defined anywhere. Of course ChessingCore namespace is defined and used by all types in the ChessingCore assembly. Is this the issue here; to reference separate assemblies do I need to remove the namespace from my types?
NB: I've tried removing the "using ChessingCore;" line -- it then fails to resolve Int2D. Manually referencing ChessingCore.dll either as an argument to CSScript.Load or as a //css_ref in the script makes no apparent difference.