added game.settings.cs acting as interface for gamemanager containing game specific settings to read from once
parent
8962a0988b
commit
f109ffbd34
11 changed files with 93 additions and 98 deletions
@ -0,0 +1,9 @@ |
||||
namespace Game { |
||||
public enum Type { Real, Hybrid, AI } |
||||
public enum Difficulty { VeryEasy, Easy, Medium, Hard, VeryHard } |
||||
|
||||
public struct Settings { |
||||
public static Type Type; |
||||
public static Difficulty AIDifficulty; |
||||
}; |
||||
} |
@ -0,0 +1,3 @@ |
||||
fileFormatVersion: 2 |
||||
guid: ba3433b349f4485cb01c605e8abdd151 |
||||
timeCreated: 1680961305 |
@ -0,0 +1,2 @@ |
||||
@import url("unity-theme://default"); |
||||
VisualElement {} |
@ -0,0 +1,11 @@ |
||||
fileFormatVersion: 2 |
||||
guid: 87c5f501dc6f5fb448eef0f9f3bffa1c |
||||
ScriptedImporter: |
||||
internalIDToNameTable: [] |
||||
externalObjects: {} |
||||
serializedVersion: 2 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
||||
script: {fileID: 12388, guid: 0000000000000000e000000000000000, type: 0} |
||||
disableValidation: 0 |
@ -1,8 +0,0 @@ |
||||
fileFormatVersion: 2 |
||||
guid: f7bb7308e65951375935aba0b037caa4 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Loading…
Reference in new issue