Skip to content

Commit

Permalink
v0.4.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AsPJT committed May 13, 2019
1 parent fadaf09 commit 38f5de3
Show file tree
Hide file tree
Showing 7 changed files with 1,819 additions and 93 deletions.
9 changes: 2 additions & 7 deletions MSVC/DungeonTemplateLibrary/20190502.cpp
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
#include <DTL.hpp>
#include <array>
#include <string>

int main() {

std::array<std::array<int, 10>, 10> matrix{ {} };
std::array<std::bitset<10>, 10> matrix{ {} };

dtl::Border<int>(1).draw(matrix);

std::string str{};
dtl::board::WriteNumber<int>("\n", "(", "), ").draw(matrix, str);

std::cout << str;
dtl::OutputNumber<int>(",").draw(matrix);

}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

## Overview

### [**Version 0.4.6**](https://github.com/Kasugaccho/DungeonTemplateLibrary/releases) [ C++11/14/17 ]
### [**Version 0.4.6.1**](https://github.com/Kasugaccho/DungeonTemplateLibrary/releases) [ C++11/14/17 ]

|Compiler|C++17|C++14|
|:---|:---|:---|
Expand Down
2 changes: 1 addition & 1 deletion include/DTL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/* バージョン */
#ifndef DUNGEON_TEMPLATE_LIBRARY_VERSION
#define DUNGEON_TEMPLATE_LIBRARY_VERSION (20190513L)
#define DUNGEON_TEMPLATE_LIBRARY_VERSION (20190514L)
#endif


Expand Down
492 changes: 471 additions & 21 deletions include/Shape/Border.hpp

Large diffs are not rendered by default.

521 changes: 500 additions & 21 deletions include/Shape/BorderOdd.hpp

Large diffs are not rendered by default.

0 comments on commit 38f5de3

Please sign in to comment.