コード例 #1
0
		void addDebugRect( float x, float y, float w, float h, Color color )
		{
			if( _debugRects == null )
				_debugRects = new List<DebugRectangleF>();
			
			var rect = new DebugRectangleF( x, y, w, h, color );
			_debugRects.Add( rect );
		}
コード例 #2
0
ファイル: Table.cs プロジェクト: RastaCow/Nez
		void addDebugRect( float x, float y, float w, float h, Color color )
		{
			if( _debugRects == null )
				_debugRects = new List<DebugRectangleF>();
			
			var rect = new DebugRectangleF( x, y, w, h, color );
			_debugRects.Add( rect );
		}