OffhandSlotArea.cs 395 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Orleans;
  5. namespace MineCase.Server.Game.Windows.SlotAreas
  6. {
  7. internal class OffhandSlotArea : InventorySlotAreaBase
  8. {
  9. public OffhandSlotArea(WindowGrain window, IGrainFactory grainFactory)
  10. : base(OffhandSlotsCount, OffhandOffsetInContainer, window, grainFactory)
  11. {
  12. }
  13. }
  14. }