15 lines
259 B
C#
15 lines
259 B
C#
using SFML.Graphics;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Firebird2D.Datatypes
|
|
{
|
|
public interface ISpatial
|
|
{
|
|
public FloatRect Bounds { get; }
|
|
}
|
|
}
|