Hello World Urho in F#
This commit is contained in:
Родитель
aa3de21839
Коммит
bd2ae3b2f9
|
@ -0,0 +1,23 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "HelloWorldUrho1", "HelloWorldUrho1\HelloWorldUrho1.fsproj", "{289ED221-23D4-4840-AEF9-4812B9899D95}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|iPhoneSimulator = Debug|iPhoneSimulator
|
||||
Release|iPhone = Release|iPhone
|
||||
Release|iPhoneSimulator = Release|iPhoneSimulator
|
||||
Debug|iPhone = Debug|iPhone
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{289ED221-23D4-4840-AEF9-4812B9899D95}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -0,0 +1,24 @@
|
|||
namespace HelloWorldUrho1
|
||||
|
||||
open System
|
||||
open UIKit
|
||||
open Foundation
|
||||
open Urho
|
||||
open Urho.iOS
|
||||
|
||||
[<Register ("AppDelegate")>]
|
||||
type AppDelegate () =
|
||||
inherit UIApplicationDelegate ()
|
||||
|
||||
//override val Window = null with get, set
|
||||
|
||||
override this.FinishedLaunching (app, options) =
|
||||
//this.Window <- new UIWindow(UIScreen.MainScreen.Bounds)
|
||||
|
||||
UrhoEngine.Init()
|
||||
let o = Urho.ApplicationOptions.Default
|
||||
|
||||
let g = new HelloWorld(o)
|
||||
g.Run() |> ignore
|
||||
|
||||
true
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,23 @@
|
|||
namespace HelloWorldUrho1
|
||||
|
||||
open Urho
|
||||
open Urho.Gui
|
||||
open Urho.iOS
|
||||
|
||||
type HelloWorld(o : ApplicationOptions) =
|
||||
inherit Urho.Application(o)
|
||||
|
||||
override this.Start() =
|
||||
let cache = this.ResourceCache
|
||||
let helloText = new Text()
|
||||
|
||||
helloText.Value <- "Hello World from Urho3D, Mono, and F#"
|
||||
helloText.HorizontalAlignment <- HorizontalAlignment.Center
|
||||
helloText.VerticalAlignment <- VerticalAlignment.Center
|
||||
|
||||
helloText.SetColor (new Color(0.f, 1.f, 0.f))
|
||||
let f = cache.GetFont("Fonts/Anonymous Pro.ttf")
|
||||
|
||||
helloText.SetFont(f, 30) |> ignore
|
||||
|
||||
this.UI.Root.AddChild(helloText)
|
|
@ -0,0 +1,122 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
|
||||
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{F2A71F9B-5D33-465A-A702-920D77279786}</ProjectTypeGuids>
|
||||
<ProjectGuid>{289ED221-23D4-4840-AEF9-4812B9899D95}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>HelloWorldUrho1</RootNamespace>
|
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
|
||||
<AssemblyName>HelloWorldUrho1</AssemblyName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<MtouchArch>i386</MtouchArch>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchUseRefCounting>true</MtouchUseRefCounting>
|
||||
<MtouchUseSGen>true</MtouchUseSGen>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<MtouchFastDev>true</MtouchFastDev>
|
||||
<MtouchProfiling>true</MtouchProfiling>
|
||||
<PlatformTarget>
|
||||
</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhone\Release</OutputPath>
|
||||
<DefineConstants>
|
||||
</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<GenerateTailCalls>true</GenerateTailCalls>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchUseSGen>true</MtouchUseSGen>
|
||||
<MtouchUseRefCounting>true</MtouchUseRefCounting>
|
||||
<MtouchFloat32>true</MtouchFloat32>
|
||||
<PlatformTarget>
|
||||
</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
|
||||
<DefineConstants>
|
||||
</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<GenerateTailCalls>true</GenerateTailCalls>
|
||||
<MtouchArch>i386</MtouchArch>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchUseRefCounting>true</MtouchUseRefCounting>
|
||||
<MtouchUseSGen>true</MtouchUseSGen>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<PlatformTarget>
|
||||
</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhone\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
<MtouchFloat32>true</MtouchFloat32>
|
||||
<MtouchUseRefCounting>true</MtouchUseRefCounting>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<DeviceSpecificBuild>true</DeviceSpecificBuild>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<MtouchProfiling>true</MtouchProfiling>
|
||||
<MtouchUseSGen>true</MtouchUseSGen>
|
||||
<PlatformTarget>
|
||||
</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="FSharp.Core" />
|
||||
<Reference Include="Xamarin.iOS" />
|
||||
<Reference Include="Urho.iOS">
|
||||
<HintPath>..\packages\UrhoSharp.1.0.218\lib\Xamarin.iOS10\Urho.iOS.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Urho">
|
||||
<HintPath>..\packages\UrhoSharp.1.0.218\lib\Xamarin.iOS10\Urho.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\Contents.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<InterfaceDefinition Include="Resources\LaunchScreen.xib" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Info.plist" />
|
||||
<None Include="Entitlements.plist" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="HelloWorld.fs" />
|
||||
<Compile Include="AppDelegate.fs" />
|
||||
<Compile Include="Main.fs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.FSharp.targets" />
|
||||
<Import Project="..\packages\UrhoSharp.1.0.218\build\Xamarin.iOS10\UrhoSharp.targets" Condition="Exists('..\packages\UrhoSharp.1.0.218\build\Xamarin.iOS10\UrhoSharp.targets')" />
|
||||
<ItemGroup>
|
||||
<BundleResource Include="Resources\Data\Fonts\Anonymous Pro.png" />
|
||||
<BundleResource Include="Resources\Data\Fonts\Anonymous Pro.sdf" />
|
||||
<BundleResource Include="Resources\Data\Fonts\Anonymous Pro.ttf" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleName</key>
|
||||
<string>HelloWorldUrho1</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.xamarin.helloworldurho1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>9.1</string>
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>1</integer>
|
||||
</array>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen</string>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>armv7</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Resources/Images.xcassets/AppIcons.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,9 @@
|
|||
namespace Test
|
||||
|
||||
open UIKit
|
||||
|
||||
module Main =
|
||||
[<EntryPoint>]
|
||||
let main args =
|
||||
UIApplication.Main(args, null, "AppDelegate")
|
||||
0
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 73 KiB |
|
@ -0,0 +1,179 @@
|
|||
<?xml version="1.0"?>
|
||||
<font>
|
||||
<info face="Anonymous Pro" size="24" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="0" aa="1" padding="0,1,1,0" spacing="0,0" outline="0"/>
|
||||
<common lineHeight="41" base="19" scaleW="512" scaleH="256" pages="1" packed="0" alphaChnl="0" redChnl="4" greenChnl="4" blueChnl="4" />
|
||||
<pages>
|
||||
<page id="0" file="Anonymous Pro.png" />
|
||||
</pages>
|
||||
<chars count="169">
|
||||
<char id="32" x="0" y="0" width="0" height="0" xoffset="22" yoffset="40" xadvance="21" page="0" chnl="15" />
|
||||
<char id="97" x="177" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="98" x="418" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="99" x="269" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="100" x="138" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="101" x="246" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="102" x="352" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="103" x="85" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="104" x="484" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="105" x="314" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="106" x="184" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="107" x="0" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="108" x="371" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="109" x="223" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="110" x="382" y="164" width="22" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="111" x="131" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="112" x="404" y="164" width="22" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="113" x="315" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="114" x="292" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="115" x="154" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="116" x="391" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="117" x="237" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="118" x="466" y="198" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="119" x="472" y="164" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="120" x="489" y="198" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="121" x="426" y="164" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="122" x="39" y="200" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="65" x="72" y="0" width="24" height="41" xoffset="-1" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="66" x="88" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="67" x="211" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="68" x="44" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="69" x="66" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="70" x="154" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="71" x="142" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="72" x="374" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="73" x="333" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="74" x="96" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="75" x="44" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="76" x="176" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="77" x="352" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="78" x="66" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="79" x="188" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="80" x="286" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="81" x="280" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="82" x="264" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="83" x="88" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="84" x="418" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="85" x="132" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="86" x="24" y="0" width="24" height="41" xoffset="-1" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="87" x="0" y="0" width="24" height="41" xoffset="-1" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="88" x="0" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="89" x="487" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="90" x="110" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="48" x="395" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="49" x="326" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="50" x="372" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="51" x="308" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="52" x="349" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="53" x="303" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="54" x="257" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="55" x="483" y="41" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="56" x="441" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="57" x="464" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="46" x="483" y="232" width="13" height="20" xoffset="7" yoffset="21" xadvance="21" page="0" chnl="15" />
|
||||
<char id="44" x="496" y="232" width="16" height="20" xoffset="4" yoffset="21" xadvance="21" page="0" chnl="15" />
|
||||
<char id="33" x="445" y="123" width="16" height="41" xoffset="7" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="63" x="198" y="123" width="20" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="45" x="412" y="233" width="23" height="19" xoffset="0" yoffset="14" xadvance="21" page="0" chnl="15" />
|
||||
<char id="43" x="108" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="92" x="218" y="123" width="20" height="41" xoffset="2" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="47" x="176" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="40" x="295" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="41" x="409" y="123" width="18" height="41" xoffset="4" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="58" x="4" y="202" width="13" height="34" xoffset="7" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="59" x="495" y="164" width="16" height="34" xoffset="4" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="37" x="23" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="38" x="165" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="96" x="427" y="123" width="18" height="41" xoffset="4" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="39" x="477" y="123" width="16" height="41" xoffset="7" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="42" x="105" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="35" x="397" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="36" x="69" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="61" x="999999" y="999999" width="23" height="28" xoffset="0" yoffset="10" xadvance="21" page="0" chnl="15" />
|
||||
<char id="91" x="461" y="123" width="16" height="41" xoffset="7" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="93" x="257" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="64" x="161" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="94" x="999999" y="999999" width="23" height="31" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="123" x="276" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="125" x="390" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="95" x="389" y="233" width="23" height="15" xoffset="0" yoffset="26" xadvance="21" page="0" chnl="15" />
|
||||
<char id="126" x="999999" y="999999" width="23" height="26" xoffset="0" yoffset="11" xadvance="21" page="0" chnl="15" />
|
||||
<char id="34" x="238" y="123" width="19" height="41" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="62" x="23" y="164" width="20" height="36" xoffset="2" yoffset="5" xadvance="21" page="0" chnl="15" />
|
||||
<char id="60" x="43" y="164" width="19" height="36" xoffset="3" yoffset="5" xadvance="21" page="0" chnl="15" />
|
||||
<char id="8211" x="435" y="233" width="23" height="19" xoffset="0" yoffset="14" xadvance="21" page="0" chnl="15" />
|
||||
<char id="8212" x="458" y="232" width="25" height="19" xoffset="-1" yoffset="14" xadvance="21" page="0" chnl="15" />
|
||||
<char id="171" x="999999" y="999999" width="23" height="30" xoffset="0" yoffset="9" xadvance="21" page="0" chnl="15" />
|
||||
<char id="187" x="999999" y="999999" width="20" height="30" xoffset="2" yoffset="9" xadvance="21" page="0" chnl="15" />
|
||||
<char id="8220" x="0" y="82" width="22" height="41" xoffset="1" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="8221" x="115" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="124" x="493" y="123" width="15" height="41" xoffset="7" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1072" x="177" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1073" x="276" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1074" x="171" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1075" x="149" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1076" x="259" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1077" x="246" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1105" x="230" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1078" x="420" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1079" x="200" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1080" x="193" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1081" x="220" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1082" x="215" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1083" x="351" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1084" x="127" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1085" x="17" y="202" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1086" x="131" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1087" x="999999" y="999999" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1088" x="404" y="164" width="22" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1089" x="62" y="164" width="23" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1090" x="374" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1091" x="426" y="164" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1092" x="345" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1093" x="489" y="198" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1094" x="61" y="200" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1095" x="83" y="199" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1096" x="305" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1097" x="282" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1098" x="328" y="199" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1099" x="443" y="198" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1100" x="999999" y="999999" width="22" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1101" x="360" y="164" width="22" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1102" x="338" y="164" width="22" height="35" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1103" x="449" y="164" width="23" height="34" xoffset="0" yoffset="7" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1040" x="72" y="0" width="24" height="41" xoffset="-1" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1041" x="198" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1042" x="88" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1043" x="110" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1044" x="234" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1045" x="66" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1025" x="132" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1046" x="48" y="0" width="24" height="41" xoffset="-1" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1047" x="242" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1048" x="22" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1049" x="154" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1050" x="44" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1051" x="119" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1052" x="352" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1053" x="374" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1054" x="188" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1055" x="330" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1056" x="286" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1057" x="322" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1058" x="418" y="0" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1059" x="460" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1060" x="414" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1061" x="0" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1063" x="396" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1062" x="440" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1064" x="46" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1065" x="207" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1066" x="299" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1067" x="253" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1068" x="22" y="123" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1069" x="92" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1070" x="462" y="82" width="22" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="1071" x="437" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="169" x="0" y="164" width="23" height="38" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
<char id="174" x="368" y="41" width="23" height="41" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15" />
|
||||
</chars>
|
||||
</font>
|
Двоичный файл не отображается.
|
@ -0,0 +1,162 @@
|
|||
{
|
||||
"images": [
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "29x29",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "29x29",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "29x29",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "40x40",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "40x40",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "57x57",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "57x57",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "60x60",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "60x60",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "29x29",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "29x29",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "40x40",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "40x40",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "50x50",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "50x50",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "72x72",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "72x72",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "76x76",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "76x76",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "car",
|
||||
"size": "120x120",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"size": "24x24",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "notificationCenter",
|
||||
"subtype": "38mm"
|
||||
},
|
||||
{
|
||||
"size": "27.5x27.5",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "notificationCenter",
|
||||
"subtype": "42mm"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"idiom": "watch",
|
||||
"role": "companionSettings",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"idiom": "watch",
|
||||
"role": "companionSettings",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"size": "40x40",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "appLauncher",
|
||||
"subtype": "38mm"
|
||||
},
|
||||
{
|
||||
"size": "44x44",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "longLook",
|
||||
"subtype": "42mm"
|
||||
},
|
||||
{
|
||||
"size": "86x86",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "quickLook",
|
||||
"subtype": "38mm"
|
||||
},
|
||||
{
|
||||
"size": "98x98",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "quickLook",
|
||||
"subtype": "42mm"
|
||||
}
|
||||
],
|
||||
"info": {
|
||||
"version": 1,
|
||||
"author": "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,106 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6214" systemVersion="14A314h" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
|
||||
<dependencies>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6207"/>
|
||||
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="iN0-l3-epB">
|
||||
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text=" Copyright (c) 2015 Xamarin" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye" misplaced="YES">
|
||||
<rect key="frame" x="20" y="439" width="441" height="21"/>
|
||||
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="HelloWorldUrho1" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX" misplaced="YES">
|
||||
<rect key="frame" x="20" y="140" width="441" height="43"/>
|
||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
|
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
||||
<constraints>
|
||||
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
|
||||
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
|
||||
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
|
||||
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
|
||||
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
|
||||
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
<point key="canvasLocation" x="548" y="455"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="CoreData/Textures/LUTIdentity.png" width="256" height="16"/>
|
||||
<image name="CoreData/Textures/Ramp.png" width="64" height="1"/>
|
||||
<image name="CoreData/Textures/RampExtreme.png" width="64" height="1"/>
|
||||
<image name="CoreData/Textures/RampWide.png" width="64" height="1"/>
|
||||
<image name="CoreData/Textures/Spot.png" width="128" height="128"/>
|
||||
<image name="CoreData/Textures/SpotWide.png" width="128" height="128"/>
|
||||
<image name="Data/Fonts/Anonymous Pro.png" width="512" height="256"/>
|
||||
<image name="Data/Fonts/Anonymous Pro.ttf" width="0" height="0"/>
|
||||
<image name="Data/Fonts/BlueHighway.png" width="512" height="256"/>
|
||||
<image name="Data/Fonts/BlueHighway.ttf" width="0" height="0"/>
|
||||
<image name="Data/Textures/Eject_Seat.png" width="256" height="64"/>
|
||||
<image name="Data/Textures/Enemy1.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Glass_Cockpit.png" width="1024" height="512"/>
|
||||
<image name="Data/Textures/HeightMap.png" width="1025" height="1025"/>
|
||||
<image name="Data/Textures/Jack_body_color.jpg" width="1024" height="1024"/>
|
||||
<image name="Data/Textures/Jack_face.jpg" width="1024" height="1024"/>
|
||||
<image name="Data/Textures/Logo.png" width="64" height="16"/>
|
||||
<image name="Data/Textures/LogoLarge.png" width="512" height="128"/>
|
||||
<image name="Data/Textures/OldUI.png" width="256" height="128"/>
|
||||
<image name="Data/Textures/Player1.png" width="512" height="512"/>
|
||||
<image name="Data/Textures/TouchInput.png" width="256" height="128"/>
|
||||
<image name="Data/Textures/UI.png" width="256" height="128"/>
|
||||
<image name="Data/Textures/UrhoIcon.png" width="48" height="48"/>
|
||||
<image name="Data/Textures/Editor/BW.png" width="64" height="256"/>
|
||||
<image name="Data/Textures/Editor/EditorIcons.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/HSV20.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconCamera.png" width="257" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconCollisionTrigger.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconCustomGeometry.png" width="128" height="128"/>
|
||||
<image name="Data/Textures/Editor/IconLight.png" width="257" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconParticleEmitter.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconPointLight.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconSoundListener.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconSoundSource.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconSplinePathPoint.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconSpotLight.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/IconZone.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/Editor/NoPreviewAvailable.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/NinjaSnowWar/HealthBarBorder.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/NinjaSnowWar/HealthBarInside.png" width="256" height="256"/>
|
||||
<image name="Data/Textures/NinjaSnowWar/Sight.png" width="64" height="64"/>
|
||||
<image name="Data/Urho2D/Aster.png" width="64" height="64"/>
|
||||
<image name="Data/Urho2D/Ball.png" width="32" height="32"/>
|
||||
<image name="Data/Urho2D/Box.png" width="32" height="32"/>
|
||||
<image name="Data/Urho2D/greenspiral.png" width="32" height="32"/>
|
||||
<image name="Data/Urho2D/isometric_grass_and_water.png" width="256" height="512"/>
|
||||
<image name="Data/Urho2D/sun.png" width="32" height="32"/>
|
||||
<image name="Data/Urho2D/sun2.png" width="32" height="32"/>
|
||||
<image name="Data/Urho2D/GoldIcon/1.png" width="64" height="64"/>
|
||||
<image name="Data/Urho2D/GoldIcon/2.png" width="64" height="64"/>
|
||||
<image name="Data/Urho2D/GoldIcon/3.png" width="17" height="60"/>
|
||||
<image name="Data/Urho2D/GoldIcon/4.png" width="64" height="64"/>
|
||||
<image name="Data/Urho2D/GoldIcon/5.png" width="64" height="64"/>
|
||||
<image name="Data/Urho2D/imp/imp_blood.png" width="226" height="73"/>
|
||||
<image name="Data/Urho2D/imp/imp_body.png" width="124" height="131"/>
|
||||
<image name="Data/Urho2D/imp/imp_footbig.png" width="65" height="49"/>
|
||||
<image name="Data/Urho2D/imp/imp_footsmall.png" width="59" height="45"/>
|
||||
<image name="Data/Urho2D/imp/imp_handbig.png" width="66" height="102"/>
|
||||
<image name="Data/Urho2D/imp/imp_handsmall.png" width="63" height="83"/>
|
||||
<image name="Data/Urho2D/imp/imp_handthrow.png" width="75" height="120"/>
|
||||
<image name="Data/Urho2D/imp/imp_head.png" width="238" height="149"/>
|
||||
<image name="Data/Urho2D/imp/imp_headangry.png" width="238" height="149"/>
|
||||
<image name="Data/Urho2D/imp/imp_headblink.png" width="238" height="149"/>
|
||||
</resources>
|
||||
</document>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="UrhoSharp" version="1.0.218" targetFramework="xamarinios10" />
|
||||
</packages>
|
Загрузка…
Ссылка в новой задаче