Add an ICreationActivity interface

This commit is contained in:
abcdefg30
2019-09-22 14:45:33 +02:00
committed by Paul Chote
parent 39f8d34494
commit 56726a0533
6 changed files with 54 additions and 9 deletions

View File

@@ -12,6 +12,7 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using OpenRA.Activities;
using OpenRA.FileSystem;
using OpenRA.Graphics;
using OpenRA.Network;
@@ -538,4 +539,7 @@ namespace OpenRA.Traits
[RequireExplicitImplementation]
public interface IUnlocksRenderPlayer { bool RenderPlayerUnlocked { get; } }
[RequireExplicitImplementation]
public interface ICreationActivity { Activity GetCreationActivity(); }
}