add jtk/package.d

This commit is contained in:
Josh Holtrop 2020-06-23 12:24:28 -04:00
parent 97ab41580a
commit a51d6e2b29
2 changed files with 7 additions and 2 deletions

5
src/jtk/package.d Normal file
View File

@ -0,0 +1,5 @@
module jtk;
public import jtk.event;
public import jtk.init;
public import jtk.window;

View File

@ -1,8 +1,8 @@
static import jtk.init;
static import jtk;
import std.stdio;
int main(string[] args)
{
jtk.init.init();
jtk.init();
return 0;
}