projects
/
sdlgit/SDL_perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
3aab39c
)
Added stub for SDL::Events
Kartik Thakore [Tue, 3 Nov 2009 02:15:42 +0000 (21:15 -0500)]
lib/SDL/Events.pm
[new file with mode: 0644]
patch
|
blob
diff --git a/lib/SDL/Events.pm
b/lib/SDL/Events.pm
new file mode 100644
(file)
index 0000000..
a293a83
--- /dev/null
+++ b/
lib/SDL/Events.pm
@@ -0,0
+1,9
@@
+package SDL::Events;
+use strict;
+use warnings;
+require Exporter;
+require DynaLoader;
+our @ISA = qw(Exporter DynaLoader);
+bootstrap SDL::Events;
+
+1;