1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-22 01:02:17 -05:00

Forgot this file

This commit is contained in:
Merlijn Wajer 2010-03-31 00:28:36 +02:00
parent 9302dc7de7
commit 422fc0b923

View File

@ -0,0 +1,9 @@
from ctypes import *
class POINT(Structure):
_fields_ = [('x', c_int),
('y', c_int)]
PPOINT = POINTER(POINT)