mirror of https://github.com/axmolengine/axmol.git
14 lines
344 B
C#
14 lines
344 B
C#
using cocos2d.Resources;
|
|
|
|
namespace cocos2d
|
|
{
|
|
/// <summary>
|
|
/// Provides access to string resources.
|
|
/// </summary>
|
|
public class LocalizedStrings
|
|
{
|
|
private static AppResources _localizedResources = new AppResources();
|
|
|
|
public AppResources LocalizedResources { get { return _localizedResources; } }
|
|
}
|
|
} |