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