Example #1
0
        public void EmoteId_Set_Get()
        {
            var packet = new NpcEmote();

            packet.EmoteId = 1;

            Assert.Equal(1, packet.EmoteId);
        }
Example #2
0
        public void AnchorEntityIndex_Set_Get()
        {
            var packet = new NpcEmote();

            packet.AnchorEntityIndex = 1;

            Assert.Equal(1, packet.AnchorEntityIndex);
        }
Example #3
0
        public void LifeTime_Set_Get()
        {
            var packet = new NpcEmote();

            packet.LifeTime = 1;

            Assert.Equal(1, packet.LifeTime);
        }
Example #4
0
        public void UiAnchorType_Set_Get(WorldUiAnchorType value)
        {
            var packet = new NpcEmote();

            packet.UiAnchorType = value;

            Assert.Equal(value, packet.UiAnchorType);
        }