File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Assets/Plugins/Source/Editor/ConfigEditors Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ public interface IPlatformConfigEditor : IConfigEditor
3636 /// </returns>
3737 bool IsPlatformAvailable ( ) ;
3838
39+ void SetDeployment ( Deployment deployment ) ;
40+
41+ PlatformManager . Platform GetPlatform ( ) ;
42+
3943 Texture GetPlatformIconTexture ( ) ;
4044 }
4145}
Original file line number Diff line number Diff line change @@ -54,6 +54,16 @@ public Texture GetPlatformIconTexture()
5454 return PlatformManager . GetPlatformIcon ( config . Platform ) ;
5555 }
5656
57+ public void SetDeployment ( Deployment deployment )
58+ {
59+ config . deployment = deployment ;
60+ }
61+
62+ public PlatformManager . Platform GetPlatform ( )
63+ {
64+ return config . Platform ;
65+ }
66+
5767 public override sealed void RenderContents ( )
5868 {
5969 GUIEditorUtility . RenderInputs ( ref config ) ;
You can’t perform that action at this time.
0 commit comments