OSDN Git Service

- instance 化した defineTag を FlappObject として処理
[flapp/flapp.git] / src / memory.js
1 goog.provide('FlappMemory');
2
3 goog.scope(function() {
4
5 /**
6  * @constructor
7  */
8 FlappMemory = function() {
9     ;
10 };
11
12 FlappMemory.prototype = {
13     add: function(key, content) {
14         ;
15     },
16     del: function(key, content) {
17         ;
18     }
19 };
20
21 });