-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
54 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Entoarox.Framework.ApiWrappers | ||
{ | ||
|
||
public interface IJsonAssetsAPI | ||
{ | ||
void LoadAssets(string path); | ||
|
||
int GetObjectId(string name); | ||
int GetCropId(string name); | ||
int GetFruitTreeId(string name); | ||
int GetBigCraftableId(string name); | ||
int GetHatId(string name); | ||
int GetWeaponId(string name); | ||
|
||
IDictionary<string, int> GetAllObjectIds(); | ||
IDictionary<string, int> GetAllCropIds(); | ||
IDictionary<string, int> GetAllFruitTreeIds(); | ||
IDictionary<string, int> GetAllBigCraftableIds(); | ||
IDictionary<string, int> GetAllHatIds(); | ||
IDictionary<string, int> GetAllWeaponIds(); | ||
|
||
event EventHandler IdsAssigned; | ||
event EventHandler AddedItemsToShop; | ||
} | ||
} |
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
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