-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathIDrawer.cs
28 lines (20 loc) · 1.13 KB
/
IDrawer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*#######################################################################################
Copyright (c) 2017-2019 Kasugaccho
Copyright (c) 2018-2019 As Project
https://github.com/Kasugaccho/DungeonTemplateLibrary
DungeonTemplateLibraryUnity
https://github.com/sitRyo/DungeonTemplateLibraryUnity
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#######################################################################################*/
namespace DTL.Shape {
/*#######################################################################################
[概要] "dtl名前空間"とは"DungeonTemplateLibrary"の全ての機能が含まれる名前空間である。
[Summary] The "dtl" is a namespace that contains all the functions of "DungeonTemplateLibrary".
#######################################################################################*/
public interface IDrawer<in TMatrixVar> {
bool Draw(TMatrixVar[,] matrix);
}
}