Skip to content

Commit

Permalink
Refactor StoredClassModel to remove abstract keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackRam-oss committed Apr 23, 2024
1 parent 601eb14 commit 1f54aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/StoredClassModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { GameStorageManager } from "../managers"
* }
* ```
*/
export default abstract class StoredClassModel {
export default class StoredClassModel {
/**
* @param categoryId The id of the category. For example if you are storing a character class, you can use "characters" as categoryId. so all instances of the character class will be stored in the "characters" category.
* @param id The id of instance of the class. This id must be unique for the category.
Expand Down

0 comments on commit 1f54aea

Please sign in to comment.