Add .vxl support to the asset browser.

This commit is contained in:
Matthias Mailänder
2020-09-27 13:36:04 +02:00
committed by Paul Chote
parent 9d181e88d2
commit fb20479379
6 changed files with 354 additions and 7 deletions

View File

@@ -45,6 +45,7 @@ namespace OpenRA.Graphics
public interface IModelCache : IDisposable
{
IModel GetModel(string model);
IModel GetModelSequence(string model, string sequence);
bool HasModelSequence(string model, string sequence);
IVertexBuffer<Vertex> VertexBuffer { get; }
@@ -66,6 +67,11 @@ namespace OpenRA.Graphics
public void Dispose() { }
public IModel GetModel(string model)
{
throw new NotImplementedException();
}
public IModel GetModelSequence(string model, string sequence)
{
throw new NotImplementedException();