16 lines
332 B
C#
16 lines
332 B
C#
|
using System;
|
||
|
|
||
|
namespace DDD
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum RestaurantManagementType : uint
|
||
|
{
|
||
|
OpenRestaurantMenu = 0,
|
||
|
StartRestaurant = 1,
|
||
|
}
|
||
|
|
||
|
//public class RestaurantManagementInteraction : RestaurantInteractionComponent, IInteractionSubsystemObject<RestaurantManagementType>
|
||
|
//{
|
||
|
//
|
||
|
//}
|
||
|
}
|