mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-14 10:09:09 +01:00
1795 lines
70 KiB
YAML
1795 lines
70 KiB
YAML
|
### YamlMime:ManagedReference
|
||
|
items:
|
||
|
- uid: MLEM.Data.Content.RawContentManager
|
||
|
commentId: T:MLEM.Data.Content.RawContentManager
|
||
|
id: RawContentManager
|
||
|
parent: MLEM.Data.Content
|
||
|
children:
|
||
|
- MLEM.Data.Content.RawContentManager.#ctor(System.IServiceProvider,System.Collections.Generic.List{MLEM.Data.Content.RawContentReader},System.String)
|
||
|
- MLEM.Data.Content.RawContentManager.#ctor(System.IServiceProvider,System.String)
|
||
|
- MLEM.Data.Content.RawContentManager.GraphicsDevice
|
||
|
- MLEM.Data.Content.RawContentManager.Initialize
|
||
|
- MLEM.Data.Content.RawContentManager.Load``1(System.String)
|
||
|
- MLEM.Data.Content.RawContentManager.ReloadAsset``1(System.String,``0)
|
||
|
- MLEM.Data.Content.RawContentManager.Unload
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: RawContentManager
|
||
|
nameWithType: RawContentManager
|
||
|
fullName: MLEM.Data.Content.RawContentManager
|
||
|
type: Class
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: RawContentManager
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 15
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Represents a version of <xref href="Microsoft.Xna.Framework.Content.ContentManager" data-throw-if-not-resolved="false"></xref> that doesn't load content binary <code>xnb</code> files, but rather as their regular formats.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: 'public class RawContentManager : ContentManager, IDisposable, IGameComponent'
|
||
|
content.vb: Public Class RawContentManager Inherits ContentManager Implements IDisposable, IGameComponent
|
||
|
inheritance:
|
||
|
- System.Object
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager
|
||
|
implements:
|
||
|
- System.IDisposable
|
||
|
- Microsoft.Xna.Framework.IGameComponent
|
||
|
inheritedMembers:
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.Dispose
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.Dispose(System.Boolean)
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized``1(System.String)
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.OpenStream(System.String)
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.ReadAsset``1(System.String,System.Action{System.IDisposable})
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.ReloadGraphicsAssets
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.LoadedAssets
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.ServiceProvider
|
||
|
- System.Object.ToString
|
||
|
- System.Object.Equals(System.Object)
|
||
|
- System.Object.Equals(System.Object,System.Object)
|
||
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
- System.Object.GetHashCode
|
||
|
- System.Object.GetType
|
||
|
- System.Object.MemberwiseClone
|
||
|
extensionMethods:
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.AddJsonConverter(Newtonsoft.Json.JsonConverter)
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.GetJsonSerializer
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.LoadJson``1(System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Newtonsoft.Json.JsonSerializer)
|
||
|
- Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(System.String,System.String,System.Boolean)
|
||
|
- uid: MLEM.Data.Content.RawContentManager.GraphicsDevice
|
||
|
commentId: F:MLEM.Data.Content.RawContentManager.GraphicsDevice
|
||
|
id: GraphicsDevice
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: GraphicsDevice
|
||
|
nameWithType: RawContentManager.GraphicsDevice
|
||
|
fullName: MLEM.Data.Content.RawContentManager.GraphicsDevice
|
||
|
type: Field
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: GraphicsDevice
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 20
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: The graphics device that this content manager uses
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public readonly GraphicsDevice GraphicsDevice
|
||
|
return:
|
||
|
type: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
content.vb: Public ReadOnly GraphicsDevice As GraphicsDevice
|
||
|
- uid: MLEM.Data.Content.RawContentManager.#ctor(System.IServiceProvider,System.String)
|
||
|
commentId: M:MLEM.Data.Content.RawContentManager.#ctor(System.IServiceProvider,System.String)
|
||
|
id: '#ctor(System.IServiceProvider,System.String)'
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: RawContentManager(IServiceProvider, string)
|
||
|
nameWithType: RawContentManager.RawContentManager(IServiceProvider, string)
|
||
|
fullName: MLEM.Data.Content.RawContentManager.RawContentManager(System.IServiceProvider, string)
|
||
|
type: Constructor
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: .ctor
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 38
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: >-
|
||
|
Creates a new content manager with an optionally specified root directory.
|
||
|
|
||
|
Each <xref href="MLEM.Data.Content.RawContentReader" data-throw-if-not-resolved="false"></xref> required for asset loading is gathered and instantiated automatically from the loaded assemblies.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public RawContentManager(IServiceProvider serviceProvider, string rootDirectory = "Content")
|
||
|
parameters:
|
||
|
- id: serviceProvider
|
||
|
type: System.IServiceProvider
|
||
|
description: The service provider of your game
|
||
|
- id: rootDirectory
|
||
|
type: System.String
|
||
|
description: The root directory. Defaults to "Content"
|
||
|
content.vb: Public Sub New(serviceProvider As IServiceProvider, rootDirectory As String = "Content")
|
||
|
overload: MLEM.Data.Content.RawContentManager.#ctor*
|
||
|
nameWithType.vb: RawContentManager.New(IServiceProvider, String)
|
||
|
fullName.vb: MLEM.Data.Content.RawContentManager.New(System.IServiceProvider, String)
|
||
|
name.vb: New(IServiceProvider, String)
|
||
|
- uid: MLEM.Data.Content.RawContentManager.#ctor(System.IServiceProvider,System.Collections.Generic.List{MLEM.Data.Content.RawContentReader},System.String)
|
||
|
commentId: M:MLEM.Data.Content.RawContentManager.#ctor(System.IServiceProvider,System.Collections.Generic.List{MLEM.Data.Content.RawContentReader},System.String)
|
||
|
id: '#ctor(System.IServiceProvider,System.Collections.Generic.List{MLEM.Data.Content.RawContentReader},System.String)'
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: RawContentManager(IServiceProvider, List<RawContentReader>, string)
|
||
|
nameWithType: RawContentManager.RawContentManager(IServiceProvider, List<RawContentReader>, string)
|
||
|
fullName: MLEM.Data.Content.RawContentManager.RawContentManager(System.IServiceProvider, System.Collections.Generic.List<MLEM.Data.Content.RawContentReader>, string)
|
||
|
type: Constructor
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: .ctor
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 48
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: >-
|
||
|
Creates a new content manager with an optionally specified root directory.
|
||
|
|
||
|
Each <xref href="MLEM.Data.Content.RawContentReader" data-throw-if-not-resolved="false"></xref> required for asset loading has to be passed using <code class="paramref">readers</code>.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public RawContentManager(IServiceProvider serviceProvider, List<RawContentReader> readers, string rootDirectory)
|
||
|
parameters:
|
||
|
- id: serviceProvider
|
||
|
type: System.IServiceProvider
|
||
|
description: The service provider of your game
|
||
|
- id: readers
|
||
|
type: System.Collections.Generic.List{MLEM.Data.Content.RawContentReader}
|
||
|
description: The raw content readers to use, which can be modified externally afterwards to add additional readers if desired.
|
||
|
- id: rootDirectory
|
||
|
type: System.String
|
||
|
description: The root directory. Defaults to "Content"
|
||
|
content.vb: Public Sub New(serviceProvider As IServiceProvider, readers As List(Of RawContentReader), rootDirectory As String)
|
||
|
overload: MLEM.Data.Content.RawContentManager.#ctor*
|
||
|
nameWithType.vb: RawContentManager.New(IServiceProvider, List(Of RawContentReader), String)
|
||
|
fullName.vb: MLEM.Data.Content.RawContentManager.New(System.IServiceProvider, System.Collections.Generic.List(Of MLEM.Data.Content.RawContentReader), String)
|
||
|
name.vb: New(IServiceProvider, List(Of RawContentReader), String)
|
||
|
- uid: MLEM.Data.Content.RawContentManager.Load``1(System.String)
|
||
|
commentId: M:MLEM.Data.Content.RawContentManager.Load``1(System.String)
|
||
|
id: Load``1(System.String)
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: Load<T>(string)
|
||
|
nameWithType: RawContentManager.Load<T>(string)
|
||
|
fullName: MLEM.Data.Content.RawContentManager.Load<T>(string)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: Load
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 62
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: >-
|
||
|
Loads a raw asset with the given name, based on the <xref href="Microsoft.Xna.Framework.Content.ContentManager.RootDirectory" data-throw-if-not-resolved="false"></xref>.
|
||
|
|
||
|
If the asset was previously loaded using this method, the cached asset is merely returned.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public override T Load<T>(string assetName)
|
||
|
parameters:
|
||
|
- id: assetName
|
||
|
type: System.String
|
||
|
description: The path and name of the asset to load, without extension.
|
||
|
typeParameters:
|
||
|
- id: T
|
||
|
description: The type of asset to load
|
||
|
return:
|
||
|
type: '{T}'
|
||
|
description: The asset, either loaded from the cache, or from disk.
|
||
|
content.vb: Public Overrides Function Load(Of T)(assetName As String) As T
|
||
|
overridden: Microsoft.Xna.Framework.Content.ContentManager.Load``1(System.String)
|
||
|
overload: MLEM.Data.Content.RawContentManager.Load*
|
||
|
nameWithType.vb: RawContentManager.Load(Of T)(String)
|
||
|
fullName.vb: MLEM.Data.Content.RawContentManager.Load(Of T)(String)
|
||
|
name.vb: Load(Of T)(String)
|
||
|
- uid: MLEM.Data.Content.RawContentManager.ReloadAsset``1(System.String,``0)
|
||
|
commentId: M:MLEM.Data.Content.RawContentManager.ReloadAsset``1(System.String,``0)
|
||
|
id: ReloadAsset``1(System.String,``0)
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: ReloadAsset<T>(string, T)
|
||
|
nameWithType: RawContentManager.ReloadAsset<T>(string, T)
|
||
|
fullName: MLEM.Data.Content.RawContentManager.ReloadAsset<T>(string, T)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: ReloadAsset
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 74
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Reloads the asset of the given type, with the given original name.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: protected override void ReloadAsset<T>(string originalAssetName, T currentAsset)
|
||
|
parameters:
|
||
|
- id: originalAssetName
|
||
|
type: System.String
|
||
|
description: The original name of the asset.
|
||
|
- id: currentAsset
|
||
|
type: '{T}'
|
||
|
description: The current asset instance.
|
||
|
typeParameters:
|
||
|
- id: T
|
||
|
description: The asset's type.
|
||
|
content.vb: Protected Overrides Sub ReloadAsset(Of T)(originalAssetName As String, currentAsset As T)
|
||
|
overridden: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,{T})
|
||
|
overload: MLEM.Data.Content.RawContentManager.ReloadAsset*
|
||
|
nameWithType.vb: RawContentManager.ReloadAsset(Of T)(String, T)
|
||
|
fullName.vb: MLEM.Data.Content.RawContentManager.ReloadAsset(Of T)(String, T)
|
||
|
name.vb: ReloadAsset(Of T)(String, T)
|
||
|
- uid: MLEM.Data.Content.RawContentManager.Unload
|
||
|
commentId: M:MLEM.Data.Content.RawContentManager.Unload
|
||
|
id: Unload
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: Unload()
|
||
|
nameWithType: RawContentManager.Unload()
|
||
|
fullName: MLEM.Data.Content.RawContentManager.Unload()
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: Unload
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 111
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Unloads this content manager, disposing all of the assets that it loaded.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public override void Unload()
|
||
|
content.vb: Public Overrides Sub Unload()
|
||
|
overridden: Microsoft.Xna.Framework.Content.ContentManager.Unload
|
||
|
overload: MLEM.Data.Content.RawContentManager.Unload*
|
||
|
- uid: MLEM.Data.Content.RawContentManager.Initialize
|
||
|
commentId: M:MLEM.Data.Content.RawContentManager.Initialize
|
||
|
id: Initialize
|
||
|
parent: MLEM.Data.Content.RawContentManager
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: Initialize()
|
||
|
nameWithType: RawContentManager.Initialize()
|
||
|
fullName: MLEM.Data.Content.RawContentManager.Initialize()
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentManager.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: Initialize
|
||
|
path: ../MLEM.Data/Content/RawContentManager.cs
|
||
|
startLine: 121
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Initializes the component. Used to load non-graphical resources.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public void Initialize()
|
||
|
content.vb: Public Sub Initialize()
|
||
|
overload: MLEM.Data.Content.RawContentManager.Initialize*
|
||
|
implements:
|
||
|
- Microsoft.Xna.Framework.IGameComponent.Initialize
|
||
|
references:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
commentId: T:Microsoft.Xna.Framework.Content.ContentManager
|
||
|
parent: Microsoft.Xna.Framework.Content
|
||
|
isExternal: true
|
||
|
name: ContentManager
|
||
|
nameWithType: ContentManager
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
- uid: MLEM.Data.Content
|
||
|
commentId: N:MLEM.Data.Content
|
||
|
href: MLEM.html
|
||
|
name: MLEM.Data.Content
|
||
|
nameWithType: MLEM.Data.Content
|
||
|
fullName: MLEM.Data.Content
|
||
|
spec.csharp:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data.Content
|
||
|
name: Content
|
||
|
href: MLEM.Data.Content.html
|
||
|
spec.vb:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data.Content
|
||
|
name: Content
|
||
|
href: MLEM.Data.Content.html
|
||
|
- uid: System.Object
|
||
|
commentId: T:System.Object
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
name: object
|
||
|
nameWithType: object
|
||
|
fullName: object
|
||
|
nameWithType.vb: Object
|
||
|
fullName.vb: Object
|
||
|
name.vb: Object
|
||
|
- uid: System.IDisposable
|
||
|
commentId: T:System.IDisposable
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.idisposable
|
||
|
name: IDisposable
|
||
|
nameWithType: IDisposable
|
||
|
fullName: System.IDisposable
|
||
|
- uid: Microsoft.Xna.Framework.IGameComponent
|
||
|
commentId: T:Microsoft.Xna.Framework.IGameComponent
|
||
|
parent: Microsoft.Xna.Framework
|
||
|
isExternal: true
|
||
|
name: IGameComponent
|
||
|
nameWithType: IGameComponent
|
||
|
fullName: Microsoft.Xna.Framework.IGameComponent
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Dispose
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.Dispose
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: Dispose()
|
||
|
nameWithType: ContentManager.Dispose()
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.Dispose()
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Dispose
|
||
|
name: Dispose
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Dispose
|
||
|
name: Dispose
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Dispose(System.Boolean)
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.Dispose(System.Boolean)
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
name: Dispose(bool)
|
||
|
nameWithType: ContentManager.Dispose(bool)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.Dispose(bool)
|
||
|
nameWithType.vb: ContentManager.Dispose(Boolean)
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.Dispose(Boolean)
|
||
|
name.vb: Dispose(Boolean)
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Dispose(System.Boolean)
|
||
|
name: Dispose
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- uid: System.Boolean
|
||
|
name: bool
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Dispose(System.Boolean)
|
||
|
name: Dispose
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- uid: System.Boolean
|
||
|
name: Boolean
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized``1(System.String)
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized``1(System.String)
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: LoadLocalized<T>(string)
|
||
|
nameWithType: ContentManager.LoadLocalized<T>(string)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized<T>(string)
|
||
|
nameWithType.vb: ContentManager.LoadLocalized(Of T)(String)
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized(Of T)(String)
|
||
|
name.vb: LoadLocalized(Of T)(String)
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized``1(System.String)
|
||
|
name: LoadLocalized
|
||
|
isExternal: true
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.LoadLocalized``1(System.String)
|
||
|
name: LoadLocalized
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.OpenStream(System.String)
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.OpenStream(System.String)
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: OpenStream(string)
|
||
|
nameWithType: ContentManager.OpenStream(string)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.OpenStream(string)
|
||
|
nameWithType.vb: ContentManager.OpenStream(String)
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.OpenStream(String)
|
||
|
name.vb: OpenStream(String)
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.OpenStream(System.String)
|
||
|
name: OpenStream
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.OpenStream(System.String)
|
||
|
name: OpenStream
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReadAsset``1(System.String,System.Action{System.IDisposable})
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.ReadAsset``1(System.String,System.Action{System.IDisposable})
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: ReadAsset<T>(string, Action<IDisposable>)
|
||
|
nameWithType: ContentManager.ReadAsset<T>(string, Action<IDisposable>)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.ReadAsset<T>(string, System.Action<System.IDisposable>)
|
||
|
nameWithType.vb: ContentManager.ReadAsset(Of T)(String, Action(Of IDisposable))
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.ReadAsset(Of T)(String, System.Action(Of System.IDisposable))
|
||
|
name.vb: ReadAsset(Of T)(String, Action(Of IDisposable))
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReadAsset``1(System.String,System.Action{System.IDisposable})
|
||
|
name: ReadAsset
|
||
|
isExternal: true
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Action`1
|
||
|
name: Action
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.action-1
|
||
|
- name: <
|
||
|
- uid: System.IDisposable
|
||
|
name: IDisposable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.idisposable
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReadAsset``1(System.String,System.Action{System.IDisposable})
|
||
|
name: ReadAsset
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Action`1
|
||
|
name: Action
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.action-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.IDisposable
|
||
|
name: IDisposable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.idisposable
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadGraphicsAssets
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.ReloadGraphicsAssets
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: ReloadGraphicsAssets()
|
||
|
nameWithType: ContentManager.ReloadGraphicsAssets()
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.ReloadGraphicsAssets()
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadGraphicsAssets
|
||
|
name: ReloadGraphicsAssets
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadGraphicsAssets
|
||
|
name: ReloadGraphicsAssets
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.LoadedAssets
|
||
|
commentId: P:Microsoft.Xna.Framework.Content.ContentManager.LoadedAssets
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: LoadedAssets
|
||
|
nameWithType: ContentManager.LoadedAssets
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.LoadedAssets
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
commentId: P:Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: RootDirectory
|
||
|
nameWithType: ContentManager.RootDirectory
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ServiceProvider
|
||
|
commentId: P:Microsoft.Xna.Framework.Content.ContentManager.ServiceProvider
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: ServiceProvider
|
||
|
nameWithType: ContentManager.ServiceProvider
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.ServiceProvider
|
||
|
- uid: System.Object.ToString
|
||
|
commentId: M:System.Object.ToString
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
||
|
name: ToString()
|
||
|
nameWithType: object.ToString()
|
||
|
fullName: object.ToString()
|
||
|
nameWithType.vb: Object.ToString()
|
||
|
fullName.vb: Object.ToString()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.ToString
|
||
|
name: ToString
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.ToString
|
||
|
name: ToString
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.Object.Equals(System.Object)
|
||
|
commentId: M:System.Object.Equals(System.Object)
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
||
|
name: Equals(object)
|
||
|
nameWithType: object.Equals(object)
|
||
|
fullName: object.Equals(object)
|
||
|
nameWithType.vb: Object.Equals(Object)
|
||
|
fullName.vb: Object.Equals(Object)
|
||
|
name.vb: Equals(Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.Equals(System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.Equals(System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.Object.Equals(System.Object,System.Object)
|
||
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
||
|
name: Equals(object, object)
|
||
|
nameWithType: object.Equals(object, object)
|
||
|
fullName: object.Equals(object, object)
|
||
|
nameWithType.vb: Object.Equals(Object, Object)
|
||
|
fullName.vb: Object.Equals(Object, Object)
|
||
|
name.vb: Equals(Object, Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.Equals(System.Object,System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.Equals(System.Object,System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
||
|
name: ReferenceEquals(object, object)
|
||
|
nameWithType: object.ReferenceEquals(object, object)
|
||
|
fullName: object.ReferenceEquals(object, object)
|
||
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
||
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
||
|
name.vb: ReferenceEquals(Object, Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
name: ReferenceEquals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
name: ReferenceEquals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.Object.GetHashCode
|
||
|
commentId: M:System.Object.GetHashCode
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
||
|
name: GetHashCode()
|
||
|
nameWithType: object.GetHashCode()
|
||
|
fullName: object.GetHashCode()
|
||
|
nameWithType.vb: Object.GetHashCode()
|
||
|
fullName.vb: Object.GetHashCode()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.GetHashCode
|
||
|
name: GetHashCode
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.GetHashCode
|
||
|
name: GetHashCode
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.Object.GetType
|
||
|
commentId: M:System.Object.GetType
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
||
|
name: GetType()
|
||
|
nameWithType: object.GetType()
|
||
|
fullName: object.GetType()
|
||
|
nameWithType.vb: Object.GetType()
|
||
|
fullName.vb: Object.GetType()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.GetType
|
||
|
name: GetType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.GetType
|
||
|
name: GetType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.Object.MemberwiseClone
|
||
|
commentId: M:System.Object.MemberwiseClone
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
||
|
name: MemberwiseClone()
|
||
|
nameWithType: object.MemberwiseClone()
|
||
|
fullName: object.MemberwiseClone()
|
||
|
nameWithType.vb: Object.MemberwiseClone()
|
||
|
fullName.vb: Object.MemberwiseClone()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.MemberwiseClone
|
||
|
name: MemberwiseClone
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.MemberwiseClone
|
||
|
name: MemberwiseClone
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.AddJsonConverter(Newtonsoft.Json.JsonConverter)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
parent: MLEM.Data.Content.ContentExtensions
|
||
|
definition: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_AddJsonConverter_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonConverter_
|
||
|
name: AddJsonConverter(ContentManager, JsonConverter)
|
||
|
nameWithType: ContentExtensions.AddJsonConverter(ContentManager, JsonConverter)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager, Newtonsoft.Json.JsonConverter)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
name: AddJsonConverter
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_AddJsonConverter_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonConverter_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonConverter
|
||
|
name: JsonConverter
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
name: AddJsonConverter
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_AddJsonConverter_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonConverter_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonConverter
|
||
|
name: JsonConverter
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.GetJsonSerializer
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
parent: MLEM.Data.Content.ContentExtensions
|
||
|
definition: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_GetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_
|
||
|
name: GetJsonSerializer(ContentManager)
|
||
|
nameWithType: ContentExtensions.GetJsonSerializer(ContentManager)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
name: GetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_GetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
name: GetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_GetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.LoadJson``1(System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
parent: MLEM.Data.Content.ContentExtensions
|
||
|
definition: MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_LoadJson__1_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String___Newtonsoft_Json_JsonSerializer_
|
||
|
name: LoadJson<T>(ContentManager, string, string[], JsonSerializer)
|
||
|
nameWithType: ContentExtensions.LoadJson<T>(ContentManager, string, string[], JsonSerializer)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.LoadJson<T>(Microsoft.Xna.Framework.Content.ContentManager, string, string[], Newtonsoft.Json.JsonSerializer)
|
||
|
nameWithType.vb: ContentExtensions.LoadJson(Of T)(ContentManager, String, String(), JsonSerializer)
|
||
|
fullName.vb: MLEM.Data.Content.ContentExtensions.LoadJson(Of T)(Microsoft.Xna.Framework.Content.ContentManager, String, String(), Newtonsoft.Json.JsonSerializer)
|
||
|
name.vb: LoadJson(Of T)(ContentManager, String, String(), JsonSerializer)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
name: LoadJson
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_LoadJson__1_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String___Newtonsoft_Json_JsonSerializer_
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: '['
|
||
|
- name: ']'
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
name: LoadJson
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_LoadJson__1_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String___Newtonsoft_Json_JsonSerializer_
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Newtonsoft.Json.JsonSerializer)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
parent: MLEM.Data.Content.ContentExtensions
|
||
|
definition: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_SetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonSerializer_
|
||
|
name: SetJsonSerializer(ContentManager, JsonSerializer)
|
||
|
nameWithType: ContentExtensions.SetJsonSerializer(ContentManager, JsonSerializer)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager, Newtonsoft.Json.JsonSerializer)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
name: SetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_SetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonSerializer_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
name: SetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_SetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonSerializer_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(System.String,System.String,System.Boolean)
|
||
|
commentId: M:MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
parent: MLEM.Data.DataTextureAtlasExtensions
|
||
|
definition: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html#MLEM_Data_DataTextureAtlasExtensions_LoadTextureAtlas_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String_System_Boolean_
|
||
|
name: LoadTextureAtlas(ContentManager, string, string, bool)
|
||
|
nameWithType: DataTextureAtlasExtensions.LoadTextureAtlas(ContentManager, string, string, bool)
|
||
|
fullName: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager, string, string, bool)
|
||
|
nameWithType.vb: DataTextureAtlasExtensions.LoadTextureAtlas(ContentManager, String, String, Boolean)
|
||
|
fullName.vb: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager, String, String, Boolean)
|
||
|
name.vb: LoadTextureAtlas(ContentManager, String, String, Boolean)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
name: LoadTextureAtlas
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html#MLEM_Data_DataTextureAtlasExtensions_LoadTextureAtlas_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String_System_Boolean_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Boolean
|
||
|
name: bool
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
name: LoadTextureAtlas
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html#MLEM_Data_DataTextureAtlasExtensions_LoadTextureAtlas_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String_System_Boolean_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Boolean
|
||
|
name: Boolean
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content
|
||
|
commentId: N:Microsoft.Xna.Framework.Content
|
||
|
isExternal: true
|
||
|
name: Microsoft.Xna.Framework.Content
|
||
|
nameWithType: Microsoft.Xna.Framework.Content
|
||
|
fullName: Microsoft.Xna.Framework.Content
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Content
|
||
|
name: Content
|
||
|
isExternal: true
|
||
|
spec.vb:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Content
|
||
|
name: Content
|
||
|
isExternal: true
|
||
|
- uid: System
|
||
|
commentId: N:System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
name: System
|
||
|
nameWithType: System
|
||
|
fullName: System
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
commentId: N:Microsoft.Xna.Framework
|
||
|
isExternal: true
|
||
|
name: Microsoft.Xna.Framework
|
||
|
nameWithType: Microsoft.Xna.Framework
|
||
|
fullName: Microsoft.Xna.Framework
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
spec.vb:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_AddJsonConverter_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonConverter_
|
||
|
name: AddJsonConverter(ContentManager, JsonConverter)
|
||
|
nameWithType: ContentExtensions.AddJsonConverter(ContentManager, JsonConverter)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager, Newtonsoft.Json.JsonConverter)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
name: AddJsonConverter
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_AddJsonConverter_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonConverter_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonConverter
|
||
|
name: JsonConverter
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.AddJsonConverter(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonConverter)
|
||
|
name: AddJsonConverter
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_AddJsonConverter_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonConverter_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonConverter
|
||
|
name: JsonConverter
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.Content.ContentExtensions
|
||
|
commentId: T:MLEM.Data.Content.ContentExtensions
|
||
|
parent: MLEM.Data.Content
|
||
|
href: MLEM.Data.Content.ContentExtensions.html
|
||
|
name: ContentExtensions
|
||
|
nameWithType: ContentExtensions
|
||
|
fullName: MLEM.Data.Content.ContentExtensions
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_GetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_
|
||
|
name: GetJsonSerializer(ContentManager)
|
||
|
nameWithType: ContentExtensions.GetJsonSerializer(ContentManager)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
name: GetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_GetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.GetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager)
|
||
|
name: GetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_GetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_LoadJson__1_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String___Newtonsoft_Json_JsonSerializer_
|
||
|
name: LoadJson<T>(ContentManager, string, string[], JsonSerializer)
|
||
|
nameWithType: ContentExtensions.LoadJson<T>(ContentManager, string, string[], JsonSerializer)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.LoadJson<T>(Microsoft.Xna.Framework.Content.ContentManager, string, string[], Newtonsoft.Json.JsonSerializer)
|
||
|
nameWithType.vb: ContentExtensions.LoadJson(Of T)(ContentManager, String, String(), JsonSerializer)
|
||
|
fullName.vb: MLEM.Data.Content.ContentExtensions.LoadJson(Of T)(Microsoft.Xna.Framework.Content.ContentManager, String, String(), Newtonsoft.Json.JsonSerializer)
|
||
|
name.vb: LoadJson(Of T)(ContentManager, String, String(), JsonSerializer)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
name: LoadJson
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_LoadJson__1_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String___Newtonsoft_Json_JsonSerializer_
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: '['
|
||
|
- name: ']'
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.LoadJson``1(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String[],Newtonsoft.Json.JsonSerializer)
|
||
|
name: LoadJson
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_LoadJson__1_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String___Newtonsoft_Json_JsonSerializer_
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
commentId: M:MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_SetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonSerializer_
|
||
|
name: SetJsonSerializer(ContentManager, JsonSerializer)
|
||
|
nameWithType: ContentExtensions.SetJsonSerializer(ContentManager, JsonSerializer)
|
||
|
fullName: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager, Newtonsoft.Json.JsonSerializer)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
name: SetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_SetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonSerializer_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.Content.ContentExtensions.SetJsonSerializer(Microsoft.Xna.Framework.Content.ContentManager,Newtonsoft.Json.JsonSerializer)
|
||
|
name: SetJsonSerializer
|
||
|
href: MLEM.Data.Content.ContentExtensions.html#MLEM_Data_Content_ContentExtensions_SetJsonSerializer_Microsoft_Xna_Framework_Content_ContentManager_Newtonsoft_Json_JsonSerializer_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Newtonsoft.Json.JsonSerializer
|
||
|
name: JsonSerializer
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
commentId: M:MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html#MLEM_Data_DataTextureAtlasExtensions_LoadTextureAtlas_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String_System_Boolean_
|
||
|
name: LoadTextureAtlas(ContentManager, string, string, bool)
|
||
|
nameWithType: DataTextureAtlasExtensions.LoadTextureAtlas(ContentManager, string, string, bool)
|
||
|
fullName: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager, string, string, bool)
|
||
|
nameWithType.vb: DataTextureAtlasExtensions.LoadTextureAtlas(ContentManager, String, String, Boolean)
|
||
|
fullName.vb: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager, String, String, Boolean)
|
||
|
name.vb: LoadTextureAtlas(ContentManager, String, String, Boolean)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
name: LoadTextureAtlas
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html#MLEM_Data_DataTextureAtlasExtensions_LoadTextureAtlas_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String_System_Boolean_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Boolean
|
||
|
name: bool
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.DataTextureAtlasExtensions.LoadTextureAtlas(Microsoft.Xna.Framework.Content.ContentManager,System.String,System.String,System.Boolean)
|
||
|
name: LoadTextureAtlas
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html#MLEM_Data_DataTextureAtlasExtensions_LoadTextureAtlas_Microsoft_Xna_Framework_Content_ContentManager_System_String_System_String_System_Boolean_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
name: ContentManager
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Boolean
|
||
|
name: Boolean
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.DataTextureAtlasExtensions
|
||
|
commentId: T:MLEM.Data.DataTextureAtlasExtensions
|
||
|
parent: MLEM.Data
|
||
|
href: MLEM.Data.DataTextureAtlasExtensions.html
|
||
|
name: DataTextureAtlasExtensions
|
||
|
nameWithType: DataTextureAtlasExtensions
|
||
|
fullName: MLEM.Data.DataTextureAtlasExtensions
|
||
|
- uid: MLEM.Data
|
||
|
commentId: N:MLEM.Data
|
||
|
href: MLEM.html
|
||
|
name: MLEM.Data
|
||
|
nameWithType: MLEM.Data
|
||
|
fullName: MLEM.Data
|
||
|
spec.csharp:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
spec.vb:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
commentId: T:Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
parent: Microsoft.Xna.Framework.Graphics
|
||
|
isExternal: true
|
||
|
name: GraphicsDevice
|
||
|
nameWithType: GraphicsDevice
|
||
|
fullName: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
- uid: Microsoft.Xna.Framework.Graphics
|
||
|
commentId: N:Microsoft.Xna.Framework.Graphics
|
||
|
isExternal: true
|
||
|
name: Microsoft.Xna.Framework.Graphics
|
||
|
nameWithType: Microsoft.Xna.Framework.Graphics
|
||
|
fullName: Microsoft.Xna.Framework.Graphics
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Graphics
|
||
|
name: Graphics
|
||
|
isExternal: true
|
||
|
spec.vb:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Graphics
|
||
|
name: Graphics
|
||
|
isExternal: true
|
||
|
- uid: MLEM.Data.Content.RawContentReader
|
||
|
commentId: T:MLEM.Data.Content.RawContentReader
|
||
|
parent: MLEM.Data.Content
|
||
|
href: MLEM.Data.Content.RawContentReader.html
|
||
|
name: RawContentReader
|
||
|
nameWithType: RawContentReader
|
||
|
fullName: MLEM.Data.Content.RawContentReader
|
||
|
- uid: MLEM.Data.Content.RawContentManager.#ctor*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentManager.#ctor
|
||
|
href: MLEM.Data.Content.RawContentManager.html#MLEM_Data_Content_RawContentManager__ctor_System_IServiceProvider_System_String_
|
||
|
name: RawContentManager
|
||
|
nameWithType: RawContentManager.RawContentManager
|
||
|
fullName: MLEM.Data.Content.RawContentManager.RawContentManager
|
||
|
nameWithType.vb: RawContentManager.New
|
||
|
fullName.vb: MLEM.Data.Content.RawContentManager.New
|
||
|
name.vb: New
|
||
|
- uid: System.IServiceProvider
|
||
|
commentId: T:System.IServiceProvider
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.iserviceprovider
|
||
|
name: IServiceProvider
|
||
|
nameWithType: IServiceProvider
|
||
|
fullName: System.IServiceProvider
|
||
|
- uid: System.String
|
||
|
commentId: T:System.String
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: string
|
||
|
nameWithType: string
|
||
|
fullName: string
|
||
|
nameWithType.vb: String
|
||
|
fullName.vb: String
|
||
|
name.vb: String
|
||
|
- uid: System.Collections.Generic.List{MLEM.Data.Content.RawContentReader}
|
||
|
commentId: T:System.Collections.Generic.List{MLEM.Data.Content.RawContentReader}
|
||
|
parent: System.Collections.Generic
|
||
|
definition: System.Collections.Generic.List`1
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||
|
name: List<RawContentReader>
|
||
|
nameWithType: List<RawContentReader>
|
||
|
fullName: System.Collections.Generic.List<MLEM.Data.Content.RawContentReader>
|
||
|
nameWithType.vb: List(Of RawContentReader)
|
||
|
fullName.vb: System.Collections.Generic.List(Of MLEM.Data.Content.RawContentReader)
|
||
|
name.vb: List(Of RawContentReader)
|
||
|
spec.csharp:
|
||
|
- uid: System.Collections.Generic.List`1
|
||
|
name: List
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||
|
- name: <
|
||
|
- uid: MLEM.Data.Content.RawContentReader
|
||
|
name: RawContentReader
|
||
|
href: MLEM.Data.Content.RawContentReader.html
|
||
|
- name: '>'
|
||
|
spec.vb:
|
||
|
- uid: System.Collections.Generic.List`1
|
||
|
name: List
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: MLEM.Data.Content.RawContentReader
|
||
|
name: RawContentReader
|
||
|
href: MLEM.Data.Content.RawContentReader.html
|
||
|
- name: )
|
||
|
- uid: System.Collections.Generic.List`1
|
||
|
commentId: T:System.Collections.Generic.List`1
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||
|
name: List<T>
|
||
|
nameWithType: List<T>
|
||
|
fullName: System.Collections.Generic.List<T>
|
||
|
nameWithType.vb: List(Of T)
|
||
|
fullName.vb: System.Collections.Generic.List(Of T)
|
||
|
name.vb: List(Of T)
|
||
|
spec.csharp:
|
||
|
- uid: System.Collections.Generic.List`1
|
||
|
name: List
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
spec.vb:
|
||
|
- uid: System.Collections.Generic.List`1
|
||
|
name: List
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- uid: System.Collections.Generic
|
||
|
commentId: N:System.Collections.Generic
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
name: System.Collections.Generic
|
||
|
nameWithType: System.Collections.Generic
|
||
|
fullName: System.Collections.Generic
|
||
|
spec.csharp:
|
||
|
- uid: System
|
||
|
name: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
- name: .
|
||
|
- uid: System.Collections
|
||
|
name: Collections
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
||
|
- name: .
|
||
|
- uid: System.Collections.Generic
|
||
|
name: Generic
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||
|
spec.vb:
|
||
|
- uid: System
|
||
|
name: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
- name: .
|
||
|
- uid: System.Collections
|
||
|
name: Collections
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
||
|
- name: .
|
||
|
- uid: System.Collections.Generic
|
||
|
name: Generic
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Load``1(System.String)
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.Load``1(System.String)
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: Load<T>(string)
|
||
|
nameWithType: ContentManager.Load<T>(string)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.Load<T>(string)
|
||
|
nameWithType.vb: ContentManager.Load(Of T)(String)
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.Load(Of T)(String)
|
||
|
name.vb: Load(Of T)(String)
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Load``1(System.String)
|
||
|
name: Load
|
||
|
isExternal: true
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Load``1(System.String)
|
||
|
name: Load
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.Content.RawContentManager.Load*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentManager.Load
|
||
|
href: MLEM.Data.Content.RawContentManager.html#MLEM_Data_Content_RawContentManager_Load__1_System_String_
|
||
|
name: Load
|
||
|
nameWithType: RawContentManager.Load
|
||
|
fullName: MLEM.Data.Content.RawContentManager.Load
|
||
|
- uid: '{T}'
|
||
|
commentId: '!:T'
|
||
|
definition: T
|
||
|
name: T
|
||
|
nameWithType: T
|
||
|
fullName: T
|
||
|
- uid: T
|
||
|
name: T
|
||
|
nameWithType: T
|
||
|
fullName: T
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,{T})
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
definition: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: ReloadAsset<T>(string, T)
|
||
|
nameWithType: ContentManager.ReloadAsset<T>(string, T)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset<T>(string, T)
|
||
|
nameWithType.vb: ContentManager.ReloadAsset(Of T)(String, T)
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset(Of T)(String, T)
|
||
|
name.vb: ReloadAsset(Of T)(String, T)
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
name: ReloadAsset
|
||
|
isExternal: true
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
name: ReloadAsset
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.Content.RawContentManager.ReloadAsset*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentManager.ReloadAsset
|
||
|
href: MLEM.Data.Content.RawContentManager.html#MLEM_Data_Content_RawContentManager_ReloadAsset__1_System_String___0_
|
||
|
name: ReloadAsset
|
||
|
nameWithType: RawContentManager.ReloadAsset
|
||
|
fullName: MLEM.Data.Content.RawContentManager.ReloadAsset
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
name: ReloadAsset<T>(string, T)
|
||
|
nameWithType: ContentManager.ReloadAsset<T>(string, T)
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset<T>(string, T)
|
||
|
nameWithType.vb: ContentManager.ReloadAsset(Of T)(String, T)
|
||
|
fullName.vb: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset(Of T)(String, T)
|
||
|
name.vb: ReloadAsset(Of T)(String, T)
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
name: ReloadAsset
|
||
|
isExternal: true
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.ReloadAsset``1(System.String,``0)
|
||
|
name: ReloadAsset
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Unload
|
||
|
commentId: M:Microsoft.Xna.Framework.Content.ContentManager.Unload
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: Unload()
|
||
|
nameWithType: ContentManager.Unload()
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.Unload()
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Unload
|
||
|
name: Unload
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager.Unload
|
||
|
name: Unload
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.Content.RawContentManager.Unload*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentManager.Unload
|
||
|
href: MLEM.Data.Content.RawContentManager.html#MLEM_Data_Content_RawContentManager_Unload
|
||
|
name: Unload
|
||
|
nameWithType: RawContentManager.Unload
|
||
|
fullName: MLEM.Data.Content.RawContentManager.Unload
|
||
|
- uid: MLEM.Data.Content.RawContentManager.Initialize*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentManager.Initialize
|
||
|
href: MLEM.Data.Content.RawContentManager.html#MLEM_Data_Content_RawContentManager_Initialize
|
||
|
name: Initialize
|
||
|
nameWithType: RawContentManager.Initialize
|
||
|
fullName: MLEM.Data.Content.RawContentManager.Initialize
|
||
|
- uid: Microsoft.Xna.Framework.IGameComponent.Initialize
|
||
|
commentId: M:Microsoft.Xna.Framework.IGameComponent.Initialize
|
||
|
parent: Microsoft.Xna.Framework.IGameComponent
|
||
|
isExternal: true
|
||
|
name: Initialize()
|
||
|
nameWithType: IGameComponent.Initialize()
|
||
|
fullName: Microsoft.Xna.Framework.IGameComponent.Initialize()
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.IGameComponent.Initialize
|
||
|
name: Initialize
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.IGameComponent.Initialize
|
||
|
name: Initialize
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|