mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 01:02:17 -05:00
Forgot this file
This commit is contained in:
parent
9302dc7de7
commit
422fc0b923
9
Projects/MMLLib/pymml/mmltypes.py
Normal file
9
Projects/MMLLib/pymml/mmltypes.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
from ctypes import *
|
||||||
|
|
||||||
|
class POINT(Structure):
|
||||||
|
_fields_ = [('x', c_int),
|
||||||
|
('y', c_int)]
|
||||||
|
|
||||||
|
PPOINT = POINTER(POINT)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user