mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2026-06-04 19:42:13 +00:00
10 lines
261 B
C#
10 lines
261 B
C#
namespace Oshima.FunGame.OshimaModules.BusinessSimulation.Interface
|
|
{
|
|
public interface IDescription
|
|
{
|
|
public string Description { get; }
|
|
public string GeneralDescription { get; }
|
|
public string BackgroundStory { get; }
|
|
}
|
|
}
|