Checkpoint initial implementation
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
from tungston.core.ecology.biometrait import BiomeTrait
|
||||
|
||||
|
||||
# Class ############################################################################################
|
||||
|
||||
class Geology(BiomeTrait):
|
||||
"""
|
||||
The natural of the rock strata in a biome.
|
||||
"""
|
||||
pass
|
||||
|
||||
|
||||
# Constants ########################################################################################
|
||||
|
||||
IGNEOUS = Geology("igneous")
|
||||
METAMORPHIC = Geology("metamorphic")
|
||||
SEDIMENTARY = Geology("sedimentary")
|
||||
|
||||
ALL = [IGNEOUS, METAMORPHIC, SEDIMENTARY]
|
||||
Reference in New Issue
Block a user