File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Core/Game/Player/Commands Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -24,22 +24,22 @@ public static void Setup () {
2424
2525static void RegisterDefaults ( )
2626{
27- #if UNITY_IOS
27+ // #if UNITY_IOS
2828Register < DefaultData > ( ) ;
2929Register < EmptyData > ( ) ;
3030Register < Coordinate > ( ) ;
3131Register < Selection > ( ) ;
3232Register < Vector2d > ( ) ;
3333Register < Vector3d > ( ) ;
34- #else
35- foreach ( Type t in Assembly . GetCallingAssembly ( ) . GetTypes ( ) )
36- {
37- if ( t . GetInterface ( "ICommandData" ) != null )
38- {
39- Register ( t ) ;
40- }
41- }
42- #endif
34+ // #else
35+ // foreach (Type t in Assembly.GetCallingAssembly().GetTypes())
36+ // {
37+ // if (t.GetInterface("ICommandData") != null)
38+ // {
39+ // Register (t);
40+ // }
41+ // }
42+ // #endif
4343}
4444
4545 private static void Register < TData > ( ) where TData : ICommandData
You can’t perform that action at this time.
0 commit comments