Skip to content

Commit

Permalink
Merge pull request #168 from Auties00/_onLoggedIn
Browse files Browse the repository at this point in the history
10.0
  • Loading branch information
Auties00 authored Dec 9, 2024
2 parents 7d5e176 + eb7745c commit dccd05e
Show file tree
Hide file tree
Showing 37 changed files with 813 additions and 688 deletions.
1 change: 1 addition & 0 deletions common/lib/src/constant/game.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const String kDefaultPlayerName = "Player";
const String kDefaultHostName = "Host";
const String kDefaultGameServerHost = "127.0.0.1";
const String kDefaultGameServerPort = "7777";
const String kInitializedLine = "Game Engine Initialized";
Expand Down
7 changes: 5 additions & 2 deletions common/lib/src/model/dll.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
enum InjectableDll {
console,
sinum,
starfall,
reboot,
memory
}

extension InjectableDllVersionAware on InjectableDll {
bool get isVersionDependent => this == InjectableDll.reboot;
}
6 changes: 4 additions & 2 deletions common/lib/src/model/fortnite_build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ class FortniteBuild {

class FortniteBuildDownloadProgress {
final double progress;
final int? minutesLeft;
final int? timeLeft;
final bool extracting;
final int speed;

FortniteBuildDownloadProgress({
required this.progress,
required this.extracting,
this.minutesLeft,
required this.timeLeft,
required this.speed
});
}

Expand Down
5 changes: 3 additions & 2 deletions common/lib/src/model/game_instance.dart
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import 'dart:io';

import 'package:reboot_common/common.dart';
import 'package:version/version.dart';


class GameInstance {
final String versionName;
final Version version;
final int gamePid;
final int? launcherPid;
final int? eacPid;
Expand All @@ -17,7 +18,7 @@ class GameInstance {
GameInstance? child;

GameInstance({
required this.versionName,
required this.version,
required this.gamePid,
required this.launcherPid,
required this.eacPid,
Expand Down
Loading

0 comments on commit dccd05e

Please sign in to comment.