v73a & v72 : XNA: BBThread and DataBuffer bugs
Monkey Forums/Monkey Bug Reports/v73a & v72 : XNA: BBThread and DataBuffer bugs| 
 | ||
| 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. |