mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2026-05-13 01:52:44 -04:00
Initial changes
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* DLC information interface
|
||||
*/
|
||||
export interface DlcInfo {
|
||||
appid: string;
|
||||
name: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Game information interface
|
||||
*/
|
||||
export interface Game {
|
||||
id: string;
|
||||
title: string;
|
||||
path: string;
|
||||
platform?: string;
|
||||
native: boolean;
|
||||
api_files: string[];
|
||||
cream_installed?: boolean;
|
||||
smoke_installed?: boolean;
|
||||
installing?: boolean;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
export * from './Game'
|
||||
export * from './DlcInfo'
|
||||
Reference in New Issue
Block a user