19 lines
391 B
C#
19 lines
391 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using BITKit;
|
||
|
using BITKit.Entities;
|
||
|
using BITKit.IO;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BITFALL.HotFix
|
||
|
{
|
||
|
public class PlayerDefaultInjector:EntityBehavior
|
||
|
{
|
||
|
public override void Initialize(IEntity _entity)
|
||
|
{
|
||
|
base.Initialize(_entity);
|
||
|
_entity.As<IUnityEntity>().AddService<IApplicationFile>(new ApplicationFile());
|
||
|
}
|
||
|
}
|
||
|
}
|