diff options
| author | the lemons <citrons@mondecitronne.com> | 2022-08-27 01:23:20 -0500 |
|---|---|---|
| committer | the lemons <citrons@mondecitronne.com> | 2022-08-27 01:23:20 -0500 |
| commit | 8bb18a89060ecd581a06238ce3fa5d2170ee3a15 (patch) | |
| tree | 25baba9d2c267b986adfe7af661b3cd99a32b346 /Input.lua | |
| parent | 001272dbcbaa1110541e0666af3cea1c97bc199f (diff) | |
implement component system
Diffstat (limited to 'Input.lua')
| -rw-r--r-- | Input.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Input.lua b/Input.lua new file mode 100644 index 0000000..a7dd2e6 --- /dev/null +++ b/Input.lua @@ -0,0 +1,6 @@ +local component = require 'component' + +-- component for objects that can recieve input events +local Input = component() + +return Input |
