shenjack
9fb2f717ea
readme 清理一些无用文件 rename folder awa awa load textures! 删掉了一些没用的东西 hmmm 好耶! 看起来少,实际上多 awa update 1.0! rue ah! 同步libs更新 Update __init__.py merge!
43 lines
537 B
Python
43 lines
537 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
|
|
class Units:
|
|
"""
|
|
base class of all units
|
|
"""
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
class _Newton(Units):
|
|
pass
|
|
|
|
|
|
newton = _Newton()
|
|
|
|
|
|
class _Metre(Units):
|
|
pass
|
|
|
|
|
|
metre = _Metre()
|
|
|
|
|
|
class _Second(Units):
|
|
pass
|
|
|
|
|
|
second = _Second()
|