ClientState: split into files
This commit is contained in:
5
src/world/clientState/Floating.ts
Normal file
5
src/world/clientState/Floating.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
namespace ClientState {
|
||||
export class Floating implements State {
|
||||
public destroy(passFocus: boolean) {}
|
||||
}
|
||||
}
|
||||
@@ -23,12 +23,4 @@ namespace ClientState {
|
||||
export type State = {
|
||||
destroy(passFocus: boolean): void;
|
||||
};
|
||||
|
||||
export class TiledMinimized implements State {
|
||||
public destroy(passFocus: boolean) {}
|
||||
}
|
||||
|
||||
export class Floating implements State {
|
||||
public destroy(passFocus: boolean) {}
|
||||
}
|
||||
}
|
||||
|
||||
5
src/world/clientState/TiledMinimized.ts
Normal file
5
src/world/clientState/TiledMinimized.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
namespace ClientState {
|
||||
export class TiledMinimized implements State {
|
||||
public destroy(passFocus: boolean) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user