-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3c3885
commit 3bac691
Showing
3 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
using System.Collections.Generic; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace OngekiFumenEditor.Base | ||
{ | ||
public interface IDisplayableObject | ||
{ | ||
static IEnumerable<IDisplayableObject> EmptyDisplayable { get; } = new IDisplayableObject[0]; | ||
public interface IDisplayableObject | ||
{ | ||
public static IEnumerable<IDisplayableObject> Empty { get; } = Array.Empty<IDisplayableObject>(); | ||
|
||
bool CheckVisiable(TGrid minVisibleTGrid, TGrid maxVisibleTGrid); | ||
bool CheckVisiable(TGrid minVisibleTGrid, TGrid maxVisibleTGrid); | ||
|
||
IEnumerable<IDisplayableObject> GetDisplayableObjects(); | ||
} | ||
IEnumerable<IDisplayableObject> GetDisplayableObjects(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters