1 module prova.legal;
2 
3 /// array of legal disclaimers, must be included in any projects that use ProvaEngine
4 string[] disclaimers = [
5   "Portions of this software are copyright © 2018 The FreeType Project (www.freetype.org).  All rights reserved.",
6 ];
7 
8 /// returns a formatted list of disclaimers
9 string formatDisclaimers(int columns)
10 {
11   import std..string;
12 
13   return disclaimers.join("\n").wrap(columns);
14 }