v73a & v72 : XNA: BBThread and DataBuffer bugs

Monkey Forums/Monkey Bug Reports/v73a & v72 : XNA: BBThread and DataBuffer bugs

AdamRedwoods(Posted 2013) [#1]
BRL/thread.cs
class BBThread{


I get errors unless there's a "public" declaration.

BRL/databuffer.cs
    public virtual bool _LoadAsync( String path,BBThread thread ){
    	if( _Load( path ) ) thread.SetResult( this );
    }

gives an error unless a bool value is returned. either a VOID or return true/false would work.