Add files.

This commit is contained in:
treeform 2020-11-19 18:45:43 -08:00
parent ced498821e
commit a1bfdb073b
5 changed files with 12 additions and 0 deletions

8
pixie.nimble Normal file
View file

@ -0,0 +1,8 @@
version = "0.0.0"
author = "Andre von Houck and Ryan Oldenburg"
description = "Full-featured 2d graphics library for Nim."
license = "MIT"
srcDir = "src"
requires "nim >= 1.2.6"

3
src/pixie.nim Normal file
View file

@ -0,0 +1,3 @@
## Public interface to you library.
import pixie/common

1
src/pixie/common.nim Normal file
View file

@ -0,0 +1 @@
## Add private variables or functions here that you don't want to export.

0
src/pixie/images.nim Normal file
View file

0
src/pixie/paths.nim Normal file
View file