10 lines
190 B
Python
10 lines
190 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import pydfapi
|
||
|
|
||
|
print "Attempting to initialize pydfhack...",
|
||
|
DF = pydfapi.API()
|
||
|
Map = pydfapi.Map()
|
||
|
Vegetation = pydfapi.Vegetation()
|
||
|
GUI = pydfapi.GUI()
|
||
|
print "OK"
|