public void Id_Set_Get()
        {
            var packet = new PlayerNebulaBuff();

            packet.Id = BuffId.LifeNebula;

            Assert.Equal(BuffId.LifeNebula, packet.Id);
        }
        public void Position_Set_Get()
        {
            var packet = new PlayerNebulaBuff();

            packet.Position = new Vector2f(100, 256);

            Assert.Equal(new Vector2f(100, 256), packet.Position);
        }
        public void PlayerIndex_Set_Get()
        {
            var packet = new PlayerNebulaBuff();

            packet.PlayerIndex = 5;

            Assert.Equal(5, packet.PlayerIndex);
        }