IDjinn

Results 2 comments of IDjinn

Also nullable attributes to improve null check

> Also nullable attributes to improve null check Example with Habbo.cs ```csharp [MemberNotNullWhen(true, nameof(CurrentRoom))] public bool InRoom => CurrentRoom != null; public Room? CurrentRoom { get => _room; } public...