mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 11:56:49 +01:00
28 lines
247 B
Python
28 lines
247 B
Python
|
import os
|
||
|
import platform
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def is_active():
|
||
|
return True
|
||
|
|
||
|
|
||
|
def get_name():
|
||
|
return "message_page"
|
||
|
|
||
|
|
||
|
def can_build():
|
||
|
return True
|
||
|
|
||
|
|
||
|
def get_opts():
|
||
|
return []
|
||
|
|
||
|
def get_flags():
|
||
|
|
||
|
return []
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|