2019-09-08 10:04:24 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace Revitalize.Framework.Energy
|
|
|
|
{
|
|
|
|
public interface IEnergyInterface
|
|
|
|
{
|
2019-09-22 15:18:48 +08:00
|
|
|
ref EnergyManager GetEnergyManager();
|
|
|
|
void SetEnergyManager(ref EnergyManager Manager);
|
2019-09-08 10:04:24 +08:00
|
|
|
}
|
|
|
|
}
|