TangentFoxy / Pop.Box

(ON HOLD) Pop.Box is an easy to use GUI library for the LÖVE engine, intended for rapid prototyping.
http://guard13007.github.io/Pop.Box/docs
MIT License
8 stars 4 forks source link

Make Pop instancable #22

Closed TangentFoxy closed 8 years ago

TangentFoxy commented 8 years ago

Instead of:

local pop = require "pop"
pop.box() --or whatever

do

local Pop = require "pop"
local pop = Pop()
pop.box() --or whatever

So that someone can fuck with as many instances of Pop.Box as they want. Why I would do this, I'm not exactly sure.

TangentFoxy commented 8 years ago

Fuck this, unneeded, if someone needs it, they can do it themselves somehow.