This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rpgedit/src/model/Entity.ts

6 lines
92 B
TypeScript

'use strict';
export default class Entity {
constructor(public name: string) {}
}