Add files.
This commit is contained in:
parent
ced498821e
commit
a1bfdb073b
5 changed files with 12 additions and 0 deletions
8
pixie.nimble
Normal file
8
pixie.nimble
Normal 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
3
src/pixie.nim
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
## Public interface to you library.
|
||||||
|
|
||||||
|
import pixie/common
|
1
src/pixie/common.nim
Normal file
1
src/pixie/common.nim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
## Add private variables or functions here that you don't want to export.
|
0
src/pixie/images.nim
Normal file
0
src/pixie/images.nim
Normal file
0
src/pixie/paths.nim
Normal file
0
src/pixie/paths.nim
Normal file
Loading…
Reference in a new issue