-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from derail-valley-modding/shared-skins
Shared skins
- Loading branch information
Showing
32 changed files
with
1,978 additions
and
407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
|
||
#if PACKAGER | ||
#nullable disable | ||
#endif | ||
|
||
namespace SMShared.Json | ||
{ | ||
[Serializable] | ||
public class ModInfoJson | ||
{ | ||
public string Id; | ||
public string DisplayName; | ||
public string Version = "1.0.0"; | ||
public string Author; | ||
public readonly string ManagerVersion = "0.27.3"; | ||
public readonly string[] Requirements = { "SkinManagerMod" }; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
|
||
#if PACKAGER | ||
#nullable disable | ||
#endif | ||
|
||
namespace SMShared.Json | ||
{ | ||
[Serializable] | ||
public class ResourceConfigJson | ||
{ | ||
public string Name; | ||
public string CarId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
|
||
#if PACKAGER | ||
#nullable disable | ||
#endif | ||
|
||
namespace SMShared.Json | ||
{ | ||
[Serializable] | ||
public class SkinConfigJson : ResourceConfigJson | ||
{ | ||
public string[] ResourceNames; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.